Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread Jelina Korhecz
Hi Dan,

As far as I'm aware, this is still necessary.  However, if you're
doing a huge replacement of  to amp; you can use BBEdit or (the free
version) Text Wrangler to find and replace over multiple files.
(However this program is only available on the mac--I'm not sure if
Windows/Linux has a similar application.)

If you need a hand with using BBEdit/Text Wrangler, feel free to drop
me a line  :)

Cheers,
Jelina



On Fri, Jun 25, 2010 at 3:39 PM, Dan Webb libweb...@gmail.com wrote:
 Hi folks,

 Years ago, I use to painstakingly and religiously convert  to amp;
 when ever I encountered it (HTML 4.01 Strict doctype).

 It's still pegged as invalid by the W3C validator, but is it really
 still necessary these days? What could possibly go wrong in modern
 browsers?

 I'm talking specifically here about ampersands in URLs that are
 provided to me by database vendors, which I have no control over; I'm
 about to start inserting literally 100s of them into static html
 pages.

 thanks,

 danny  boy.


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread David Dorward
 
On 25 Jun 2010, at 06:39, Dan Webb wrote:

 Years ago, I use to painstakingly and religiously convert  to amp;
 when ever I encountered it (HTML 4.01 Strict doctype).
 
 It's still pegged as invalid by the W3C validator, but is it really
 still necessary these days?

Yes

 What could possibly go wrong in modern browsers?

* Your ampersand might be followed by a genuine entity name. copy is a good 
one to have as a field name in a form.
* Your pile of validity errors might obscure, by weight of numbers, another 
screw up on the part of the author that some browsers can't recover from.

 I'm talking specifically here about ampersands in URLs that are
 provided to me by database vendors, which I have no control over; I'm
 about to start inserting literally 100s of them into static html
 pages.

If they are giving you URLs (as opposed to fragments of HTML with errors in 
them) then the solution is simple - use a tool more powerful than a simple text 
editor. If not, then run the documents through a fix up script (like HTML 
Tidy), then for a link check over the results, and hope that they aren't 
returning 200 OKs for any pages which had real entities in them in the first 
place.


-- 
David Dorward
http://dorward.me.uk



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread nedlud
Notepad++ is a good free editor for Windows that should work for this.

On 25 June 2010 15:54, Jelina Korhecz jelina.korh...@gmail.com wrote:

 Hi Dan,

 As far as I'm aware, this is still necessary.  However, if you're
 doing a huge replacement of  to amp; you can use BBEdit or (the free
 version) Text Wrangler to find and replace over multiple files.
 (However this program is only available on the mac--I'm not sure if
 Windows/Linux has a similar application.)

 If you need a hand with using BBEdit/Text Wrangler, feel free to drop
 me a line  :)

 Cheers,
 Jelina



 On Fri, Jun 25, 2010 at 3:39 PM, Dan Webb libweb...@gmail.com wrote:
  Hi folks,
 
  Years ago, I use to painstakingly and religiously convert  to amp;
  when ever I encountered it (HTML 4.01 Strict doctype).
 
  It's still pegged as invalid by the W3C validator, but is it really
  still necessary these days? What could possibly go wrong in modern
  browsers?
 
  I'm talking specifically here about ampersands in URLs that are
  provided to me by database vendors, which I have no control over; I'm
  about to start inserting literally 100s of them into static html
  pages.
 
  thanks,
 
  danny  boy.
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: memberh...@webstandardsgroup.org
  ***
 
 


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Re: [WSG] Is it still necessary to encode ampersands?. ANSWERED.

2010-06-25 Thread Dan Webb
Thanks Jelina and David for prompt replies.

I'll continue to do encode them.

cheers,

dan.




Jelina wrote:
As far as I'm aware, this is still necessary. (etc)




David wrote:
Yes (etc)





 On Fri, Jun 25, 2010 at 3:39 PM, I wrote:
 Hi folks,

 Years ago, I use to painstakingly and religiously convert  to amp;
 when ever I encountered it (HTML 4.01 Strict doctype).

 It's still pegged as invalid by the W3C validator, but is it really
 still necessary these days? What could possibly go wrong in modern
 browsers?

 I'm talking specifically here about ampersands in URLs that are
 provided to me by database vendors, which I have no control over; I'm
 about to start inserting literally 100s of them into static html
 pages.

 thanks,

 danny  boy.


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread Chris F.A. Johnson
On Fri, 25 Jun 2010, Jelina Korhecz wrote:

 Hi Dan,
 
 As far as I'm aware, this is still necessary.  However, if you're
 doing a huge replacement of  to amp; you can use BBEdit or (the free
 version) Text Wrangler to find and replace over multiple files.
 (However this program is only available on the mac--I'm not sure if
 Windows/Linux has a similar application.)

   Linux (or any Unix system) has many tools to do the job: sed, awk,
   or any decent text editor.

   On GNU/Linux, for example:

sed -i -e 's/amp;/\/g' -e 's//\amp;' *html

 If you need a hand with using BBEdit/Text Wrangler, feel free to drop
 me a line  :)
 
 On Fri, Jun 25, 2010 at 3:39 PM, Dan Webb libweb...@gmail.com wrote:
  Hi folks,
 
  Years ago, I use to painstakingly and religiously convert  to amp;
  when ever I encountered it (HTML 4.01 Strict doctype).
 
  It's still pegged as invalid by the W3C validator, but is it really
  still necessary these days? What could possibly go wrong in modern
  browsers?
 
  I'm talking specifically here about ampersands in URLs that are
  provided to me by database vendors, which I have no control over; I'm
  about to start inserting literally 100s of them into static html
  pages.

-- 
   Chris F.A. Johnson, http://cfajohnson.com
   Author:
   Pro Bash Programming: Scripting the GNU/Linux Shell (2009, Apress)
   Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Is it still necessary to encode ampersands?. ANSWERED.

2010-06-25 Thread Dan Webb
Thanks to nedlud and Chris too.
Just to be clear, and to save others who might be offering editing
suggestions ..

I did just want to know if it's still necessary to do the encoding, I
don't require help with the conversion, I have that under control. And
it's not necessary anyway. The task is to insert 100s of instances of
the (almost) same URL which contains ampersands; just one part of the
URL needs to be different for each item it belongs to, so it's not a
simple find/replace job.

cheers,

dan.



On Fri, Jun 25, 2010 at 4:06 PM, Dan Webb libweb...@gmail.com wrote:
 Thanks Jelina and David for prompt replies.

 I'll continue to do encode them.

 cheers,

 dan.




 Jelina wrote:
As far as I'm aware, this is still necessary. (etc)




 David wrote:
Yes (etc)





 On Fri, Jun 25, 2010 at 3:39 PM, I wrote:
 Hi folks,

 Years ago, I use to painstakingly and religiously convert  to amp;
 when ever I encountered it (HTML 4.01 Strict doctype).

 It's still pegged as invalid by the W3C validator, but is it really
 still necessary these days? What could possibly go wrong in modern
 browsers?

 I'm talking specifically here about ampersands in URLs that are
 provided to me by database vendors, which I have no control over; I'm
 about to start inserting literally 100s of them into static html
 pages.

 thanks,

 danny  boy.


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***





***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread Michal Miksik
I just had problems with ampersands in google static maps,
where if placing multiple pins in 1 map I had to change markers=
to amp;markers=, otherwise wouldn't work at all
MM




On Fri, Jun 25, 2010 at 7:39 AM, Dan Webb libweb...@gmail.com wrote:

 Hi folks,

 Years ago, I use to painstakingly and religiously convert  to amp;
 when ever I encountered it (HTML 4.01 Strict doctype).

 It's still pegged as invalid by the W3C validator, but is it really
 still necessary these days? What could possibly go wrong in modern
 browsers?

 I'm talking specifically here about ampersands in URLs that are
 provided to me by database vendors, which I have no control over; I'm
 about to start inserting literally 100s of them into static html
 pages.

 thanks,

 danny  boy.


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




-- 
--

Ing. Michal Mikšík
web designer/developer

Bratislava, SLOVAK REPUBLIC

Web: http://moonpixel.com





Please consider the environment before printing this email.

This E-mail is Intended Solely for the Addressee(s) and May be Confidential.

- If you are not the named addressee, or if the message has been E-mailed to
you in error, you must not read, disclose, reproduce, distribute or use this
E-mail.

- Delivery of this E-mail to any person other than the named addressee is
not intended in any way to waive confidentiality.

- If you have received this E-mail in error please contact the sender or
delete the message, thank you.


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread Nancy Johnson
Besides ampersands, I worked on a dynamic site that the convention was
to add a (+) sign in the friendly URL. The plug takes the page title
and puts the (+) sign between words.

The W3C validator tells me to convert to amp; and produces 163 errors
per page, a site that validated up to the point of the friendly URL
was added.  There are also URLs to searches that don't validate for
other reasons.

I work as part of a team and had no say in the decision.

So now, if I ask for help on certain email lists, and all I get is
that your page doesn't validate.  I no longer get any help for the
question I ask which has nothing to do with why the page isn't
validating.

As more and more pages are generated dynamically with CMS in place,
using friendly URL's or using markers as described below, should this
be something the the W3C validator addresses?

Nancy

On Fri, Jun 25, 2010 at 1:58 AM, Michal Miksik mmik...@gmail.com wrote:
 I just had problems with ampersands in google static maps,
 where if placing multiple pins in 1 map I had to change markers=
 to amp;markers=, otherwise wouldn't work at all
 MM




 On Fri, Jun 25, 2010 at 7:39 AM, Dan Webb libweb...@gmail.com wrote:

 Hi folks,

 Years ago, I use to painstakingly and religiously convert  to amp;
 when ever I encountered it (HTML 4.01 Strict doctype).

 It's still pegged as invalid by the W3C validator, but is it really
 still necessary these days? What could possibly go wrong in modern
 browsers?

 I'm talking specifically here about ampersands in URLs that are
 provided to me by database vendors, which I have no control over; I'm
 about to start inserting literally 100s of them into static html
 pages.

 thanks,

 danny  boy.


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




 --
 --

 Ing. Michal Mikšík
 web designer/developer

 Bratislava, SLOVAK REPUBLIC

 Web: http://moonpixel.com


 


 Please consider the environment before printing this email.

 This E-mail is Intended Solely for the Addressee(s) and May be Confidential.

 - If you are not the named addressee, or if the message has been E-mailed to
 you in error, you must not read, disclose, reproduce, distribute or use this
 E-mail.

 - Delivery of this E-mail to any person other than the named addressee is
 not intended in any way to waive confidentiality.

 - If you have received this E-mail in error please contact the sender or
 delete the message, thank you.


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread Adam Martin
I really don't see how having seo friendly urls changes things. I would
sugest that before you made the seo friendly urls that you may have had
.html in the extension so that the validator knew how to validate the page.

Perhaps you are missing something similar to:

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;
html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en lang=en




On Fri, Jun 25, 2010 at 12:32 PM, Nancy Johnson njohnso...@gmail.comwrote:

 Besides ampersands, I worked on a dynamic site that the convention was
 to add a (+) sign in the friendly URL. The plug takes the page title
 and puts the (+) sign between words.

 The W3C validator tells me to convert to amp; and produces 163 errors
 per page, a site that validated up to the point of the friendly URL
 was added.  There are also URLs to searches that don't validate for
 other reasons.

 I work as part of a team and had no say in the decision.

 So now, if I ask for help on certain email lists, and all I get is
 that your page doesn't validate.  I no longer get any help for the
 question I ask which has nothing to do with why the page isn't
 validating.

 As more and more pages are generated dynamically with CMS in place,
 using friendly URL's or using markers as described below, should this
 be something the the W3C validator addresses?

 Nancy

 On Fri, Jun 25, 2010 at 1:58 AM, Michal Miksik mmik...@gmail.com wrote:
  I just had problems with ampersands in google static maps,
  where if placing multiple pins in 1 map I had to change markers=
  to amp;markers=, otherwise wouldn't work at all
  MM
 
 
 
 
  On Fri, Jun 25, 2010 at 7:39 AM, Dan Webb libweb...@gmail.com wrote:
 
  Hi folks,
 
  Years ago, I use to painstakingly and religiously convert  to amp;
  when ever I encountered it (HTML 4.01 Strict doctype).
 
  It's still pegged as invalid by the W3C validator, but is it really
  still necessary these days? What could possibly go wrong in modern
  browsers?
 
  I'm talking specifically here about ampersands in URLs that are
  provided to me by database vendors, which I have no control over; I'm
  about to start inserting literally 100s of them into static html
  pages.
 
  thanks,
 
  danny  boy.
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: memberh...@webstandardsgroup.org
  ***
 
 
 
 
  --
  --
 
  Ing. Michal Mikšík
  web designer/developer
 
  Bratislava, SLOVAK REPUBLIC
 
  Web: http://moonpixel.com
 
 
  
 
 
  Please consider the environment before printing this email.
 
  This E-mail is Intended Solely for the Addressee(s) and May be
 Confidential.
 
  - If you are not the named addressee, or if the message has been E-mailed
 to
  you in error, you must not read, disclose, reproduce, distribute or use
 this
  E-mail.
 
  - Delivery of this E-mail to any person other than the named addressee is
  not intended in any way to waive confidentiality.
 
  - If you have received this E-mail in error please contact the sender or
  delete the message, thank you.
 
 
  ***
  List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
  Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
  Help: memberh...@webstandardsgroup.org
  ***


 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***




***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


Re: [WSG] Is it still necessary to encode ampersands?

2010-06-25 Thread David Dorward
 
On 25 Jun 2010, at 12:32, Nancy Johnson wrote:

 Besides ampersands, I worked on a dynamic site that the convention was
 to add a (+) sign in the friendly URL. The plug takes the page title
 and puts the (+) sign between words.

This is fine. A plus just means a space. in a form encoded URL.

 The W3C validator tells me to convert to amp; and produces 163 errors
 per page, a site that validated up to the point of the friendly URL
 was added.  There are also URLs to searches that don't validate for
 other reasons.

It will tell you that something is an error. It won't tell you that a + is 
though.

 I work as part of a team and had no say in the decision.

Sounds like a badly managed team.

 So now, if I ask for help on certain email lists, and all I get is
 that your page doesn't validate.  I no longer get any help for the
 question I ask which has nothing to do with why the page isn't
 validating.

This is fair. You ask for free support, but provide test data that doesn't pass 
basic, automated QA tests. It doesn't really motivate people to help.

(BTW, if you really have to work in such a poor environment, you can produce a 
reduced test case and ask people to help with that instead of your original 
(invalid) page)

 As more and more pages are generated dynamically with CMS in place,
 using friendly URL's or using markers as described below, should this
 be something the the W3C validator addresses?

No, it should be something the CMSs address. There is absolutely no reason for 
them not to run non-HTML data through X before inserting it into a document. 
(Where X is http://search.cpan.org/perldoc?HTML::Entities or 
http://php.net/htmlspecialchars or whatever is the usual tool for the language 
the CMS is using). A CMS doesn't even have one of the favourite excuses of the 
hand crafter — it isn't a lot of manual work!

-- 
David Dorward
http://dorward.me.uk



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***



[WSG] Jentla Update

2010-06-25 Thread Damian Hickey
Having trouble viewing this email?
Click here
http://campaign.constantcontact.com/render?v=0013fJXCVJ8X4Fll8iHXkgr6niEI-g8SedRsR7atuO_RNAVicHdX55QSbGpXBM4PFOVys1K6euvds4arbct0nYoEIm_pLNIDQPX4jIuxsSOdCivflTAbbJAvw%3D%3D


Jentla logo image 
[http://r20.rs6.net/tn.jsp?et=1102943011549s=6676e=001g6IJMfAOa2XyrdMaJ4DXKq1j-wTdeqiXG2Tjftwgw7lw_vMl2thBYGo-iQczSD0bp_np1TlXY9SnhBLdOMRoZl0z_Shis0ATLOYptgq9Ue8=]


Jentla Update Newsletter

Hi,
Welcome to the first edition of the Jentla Update Newsletter. We'll keep you 
informed
about new developments and initiatives about our enterprise layer of extensions 
for Joomla.
It is becoming more broadly accepted as best practice to use a CMS with native 
multisite
functionality. With Jentla we are going even further and making every part of 
the
CMS to be multisite aware. For example, if you have an integrated video 
solution,
it should be possible to publish videos across many sites in one click.
Take a minute to see how Jentla on top of Joomla compares 
[http://r20.rs6.net/tn.jsp?et=1102943011549s=6676e=001g6IJMfAOa2VWZF_KLxE1WX454BC5QWWfEn-XKztotsnMUolJuk0DlMaXgGf2q6q9uvU4BcdT4UE6jeP681dL-A1uVnpl48UCbETxPkWWAru4yOJUk5E133XBxCOrGIdVk6ALrZKQ8jqEv7sZo7e5Ow==]
with other popular CMS systems.


Joomla 1.6 video intro

Andrew Eddie 
[http://r20.rs6.net/tn.jsp?et=1102943011549s=6676e=001g6IJMfAOa2UEZg7AnqfLbS8x9g5vWj2ei3bGeTnmCeKfRyFH7m5tPNm8kdXeAalHW-7D2jBEEqbAcG_wv63LAQfwG6u8mjPX2DQ6-FMLQmixQCavM2XyWA==]Andrew
Eddie, the lead developer of Joomla has very recently recorded a series of 
videos
about the new features in Joomla 1.6. It is quite detailed and over an hour long
 but worthwhile as a detailed guide for the real Joomla enthusiast. It is a part
 of a series we are sponsoring to introduce Joomla 1.6 in depth. Watch the video
 here 
[http://r20.rs6.net/tn.jsp?et=1102943011549s=6676e=001g6IJMfAOa2UEZg7AnqfLbS8x9g5vWj2ei3bGeTnmCeKfRyFH7m5tPNm8kdXeAalHW-7D2jBEEqbAcG_wv63LAQfwG6u8mjPX2DQ6-FMLQmixQCavM2XyWA==].
Jentla extensions will be fully compatible with Joomla 1.6 and the upgrade path 
for Jentla users will be seamless. The main features of Joomla 1.6 like admin 
side
access control and category hierarchies can already be achieved in Jentla but 
we'll
make Jentla fully Joomla 1.6 compatible.


Jentla E (eCommerce)


Our eCommerce software Freeway is about to be rebranded as Jentla E and fully 
integrated
with Jentla. It has been convereted into Joomla native extensions.

So
instead of trying to use a simple eCommerce solution like VirtueMart with 
Joomla,
or
one that is not fully integrated, like Magento, site builders will now
have a powerful, native Joomla based solution.

Jentla V allows you to sell a very wide range of products, services, 
subscriptions
and events.

In terms of new features, the biggest update is a large donations extension. You
 can see this extension in use at www.missionaustralia.com.au 
[http://r20.rs6.net/tn.jsp?et=1102943011549s=6676e=001g6IJMfAOa2VVPc9UbInL8jXTCjCRnqgKF_mSAFxvB8uLnghk4wqLZ-sWIIEQc7ybvaDYEogX5pgILxOhTd1T07GvE8WnkZa-9y0fOnWMCt5QYCex9x_3qTsLybYRSPq0]This
extension is quite mature and will make setting up powerful online donations 
programmes
including eGifts possible for non-profits.

We
are also aligning the templating and extension installation to become
Joomla native but these will not be released in the first version.


New Joomla Admin Template

I've recently blogged 
[http://r20.rs6.net/tn.jsp?et=1102943011549s=6676e=001g6IJMfAOa2XOvytThgDWK21PbocQTz0tLWmWioL-2lMXHPR2zw2f25TG8-V-b8Js316H5o9mf7RbEkZgalMG-3NGX8DiOYixzfxPKwYJazn-lv7pPmipdB8ec48tRwU8IyeUfLsghVNWVnKllHdQJDPoHWIh_FwrAMB34-hrJqU=]about
the latest draft of the new
admin template for Jentla that we are creating over the next two
months. There are a couple of draft images to give you an idea how the
process is going. We think this new template with
it's focus on usability will create a large buzz in the Joomla
community.


Jentla V (Video)

Online
video delivery is critical to the web strategy of so many businesses
now. We've just added a huge array of video functionality directly into
Jentla under the new name of Jentla V. Video is now a standard part of the CMS 
experience
for web
developers. There is no longer any need to have a video CMS and a
general page content CMS. For video
enabled sites, this means huge savings in time and effort to add video content. 
No more fiddling with embed codes from external
applications. It's now possible to:

* Browse a list of videos and drag and drop videos from the video repository 
directly
into articles.
* Uploading video can be 

[WSG] Out of Office AutoReply: WSG Digest

2010-06-25 Thread Ruth, Jodie
I am out of the office from Friday June 25, returning Monday July 5. Please 
direct any web-related questions to web.helpd...@environment.gov.au, or 
Intranet to intranet.helpd...@environment.gov.au

Kind regards,
Jodie Ruth


--
If you have received this transmission in error please notify us immediately by 
return e-mail and delete all copies. If this e-mail or any attachments have 
been sent to you in error, that error does not constitute waiver of any 
confidentiality, privilege or copyright in respect of information in the e-mail 
or attachments. 



Please consider the environment before printing this email.

--



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***


[WSG] Autosvar - Ikke til stede: WSG Digest

2010-06-25 Thread Peter Larsen
Er ikke fuldtids på skolen i øjeblikket. Men vender tilbage så hurtigt jeg 
kan/is not fulltime present at the college - but i will get back to You as soon 
as possbie

Med venlig hilsen/best wishes
Peter Larsen
Center for Medie og Kommunikation
Roskilde Tekniske Skole


***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***