Forum     

Go Back   Digit Technology Discussion Forum > Software > Programming
Register FAQ Calendar Mark Forums Read

Programming The destination for developers - C, C++, Java, Python and the lot


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 28-11-2007, 04:33 PM   #1 (permalink)
Apprentice
 
amanjagga's Avatar
 
Join Date: Dec 2006
Posts: 89
Question urgent help needed!


Hi guys
I have 1 template that is without xml file and i want to make this template compatible with CMS( zoomla)
If any one can help me in this matter
PLz! guys plz! guys help me!
__________________
www.hhostingg.com
amanjagga is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 01-12-2007, 12:28 PM   #2 (permalink)
Apprentice
 
amanjagga's Avatar
 
Join Date: Dec 2006
Posts: 89
Default Re: urgent help needed!

hellllllllllllllllllllllpppppppppppppppppppppp mmmmmmmmmmmmeeeeeeeeeeeeee
__________________
www.hhostingg.com
amanjagga is offline  
Old 01-12-2007, 01:30 PM   #3 (permalink)
Wahahaha~!
 
Faun's Avatar
 
Join Date: Dec 2006
Location: Pune/there
Posts: 7,675
Default Re: urgent help needed!

can u elaborate, wats the template, post it here.

May be then someone can help u.
__________________
Blog | Flickr | Battlelog
Spoiler:
Asus Z68 V-Pro|i5 2500k|TRUE Black|Ripjaws X|U2311H|N560GTX|D7000|XONAR STX|RE272|RE0|CC51|XE200PRO Walnut| TD II V2| Ultraphile|N5800

Mono
Faun is online now  
Old 02-12-2007, 02:56 PM   #4 (permalink)
Apprentice
 
amanjagga's Avatar
 
Join Date: Dec 2006
Posts: 89
Default Re: urgent help needed!

Quote:
Originally Posted by T159
can u elaborate, wats the template, post it here.

May be then someone can help u.
I have this template and want to use this with zoomla

http://www.boxedart.com/phpshop/info.php/mp_/16378

plz! help
__________________
www.hhostingg.com
amanjagga is offline  
Old 02-12-2007, 03:23 PM   #5 (permalink)
Wahahaha~!
 
Faun's Avatar
 
Join Date: Dec 2006
Location: Pune/there
Posts: 7,675
Default Re: urgent help needed!

Quote:
Originally Posted by amanjagga
I have this template and want to use this with zoomla

http://www.boxedart.com/phpshop/info.php/mp_/16378

plz! help
hey thats paid one, so unless and until someone can get a copy of that he/she cant make XML file for that.
__________________
Blog | Flickr | Battlelog
Spoiler:
Asus Z68 V-Pro|i5 2500k|TRUE Black|Ripjaws X|U2311H|N560GTX|D7000|XONAR STX|RE272|RE0|CC51|XE200PRO Walnut| TD II V2| Ultraphile|N5800

Mono
Faun is online now  
Old 02-12-2007, 03:34 PM   #6 (permalink)
Apprentice
 
amanjagga's Avatar
 
Join Date: Dec 2006
Posts: 89
Default Re: urgent help needed!

Quote:
Originally Posted by T159
hey thats paid one, so unless and until someone can get a copy of that he/she cant make XML file for that.
Dude i have the copy i have suscribe to it
__________________
www.hhostingg.com
amanjagga is offline  
Old 02-12-2007, 03:59 PM   #7 (permalink)
Wahahaha~!
 
Faun's Avatar
 
Join Date: Dec 2006
Location: Pune/there
Posts: 7,675
Default Re: urgent help needed!

Quote:
Originally Posted by amanjagga
Dude i have the copy i have suscribe to it
yeah thats true but then how someone can help u without even knowing the structure of that template.

You need an XML for that and without getting elements and attributes in theat template one cant create XML file for u.

Perhaps this will help u
http://www.mambosolutions.com/dw_tutorial/#top

And here is one software to generate template.xml for any template:
http://webscripts.softpedia.com/scri...ator-8500.html

Guess it helps u out

Quote:
<?xml version="1.0" encoding="utf-8"?>
<install version="1.5" type="template">
<name>TemplateTutorial15</name>
<creationDate>August 2007</creationDate>
<author>Barrie North</author>
<copyright>GPL</copyright>
\n <authorEmail> This email address is being protected from spam bots, you need Javascript enabled to view it </authorEmail>
<authorUrl>www.compassdesigns.net</authorUrl>
<version>1.0</version>
<description>First example template for Chapter 9 of the Joomla Book</description>
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
<filename>js/somejsfile.js</filename>
<filename>images/threecol-l.gif</filename>
<filename>images/threecol-r.gif</filename>
<filename>css/customize.css</filename>
<filename>css/layout.css</filename>
<filename>css/template_css.css</filename>
</files>
<positions>
<position>user1</position>
<position>top</position>
<position>left</position>
<position>banner</position>
<position>right</position>
<position>footer</position>
</positions>
<params>
<param name="colorVariation" type="list" default="white" label="Color Variation" description="Color variation to use">
<option value="blue">Blue</option>
<option value="red">Red</option>
</param>
</params>
</install>
only if u can understand it u can do it manually

Explaination

Quote:
  • <install version="1.5" type="template">. The contents of the XML document are instructions for the backend installer. The option type="template" tells the installer that we are installing a template and that it is for Joomla 1.5.
  • <name>TemplateTutorial15</name>. Defines the name of your template. The name you enter here will also be used to create the directory within the templates directory. Therefore it should not contain any characters that the file system cannot handle, for example spaces. If installing manually, you need to create a directory that is identical to the template name.
  • <creationDate>August 2007</creationDate>. The date the template was created. It is a free form field and can be anything such as May 2005, 08-June-1978, 01/01/2004, and so on.
  • <author>Barrie North</author>. The name of the author of this template[md]most likely your name.
  • <copyright>GPL</copyright>. Any copyright information goes into this element. A Licensing Primer for Developers and Designers can be found on the Joomla forums.
  • <authorEmail> \n This e-mail address is being protected from spam bots, you need JavaScript enabled to view it </authorEmail>. Email address where the author of this template can be reached.
  • <authorUrl>www.compassdesigns.net</authorUrl>. The URL of the author's website.
  • <version>1.0</version>. The version of this template.
  • <files></files>. Various files used in the template.
  • The files used in the template are laid out with <filename> tags:
<files>
<filename>index.php</filename>
<filename>templateDetails.xml</filename>
<filename>js/somejsfile.js</filename>
<filename>images/threecol-l.gif</filename>
<filename>images/threecol-r.gif</filename>
<filename>css/customize.css</filename>
<filename>css/layout.css</filename>
<filename>css/template_css.css</filename>
</files>
  • The "files" sections contain all generic files like the PHP source for the template or the thumbnail image for the template preview. Each file listed in this section is enclosed by <filename> </filename>. Also included would be any additional files; here the example of a JavaScript file that is required by the template is used.
  • All image files that the template uses are also listed in the <files> section. Again, each file listed is enclosed by <filename> </filename>. Path information for the files is relative to the root of the template. For example, if the template is in the directory called 'YourTemplate', and all images are in a directory 'images' that is inside 'YourTemplate', the correct path is: <filename>images/my_image.jpg</filename>
  • Lastly, any stylesheets are listed in the files section. Again, the filename is enclosed by <filename> </filename>, and it's path is relative to the template root.
  • <positions></positions>.The module positions available in the template.
  • <params></params>. These describe parameters that can be passed to allow advanced template functions such as changing the color of the template.
more on http://www.joomlashack.com/index.php...1&limitstart=2
__________________
Blog | Flickr | Battlelog
Spoiler:
Asus Z68 V-Pro|i5 2500k|TRUE Black|Ripjaws X|U2311H|N560GTX|D7000|XONAR STX|RE272|RE0|CC51|XE200PRO Walnut| TD II V2| Ultraphile|N5800

Mono

Last edited by Faun; 02-12-2007 at 04:06 PM. Reason: Automerged Doublepost
Faun is online now  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
urgent help needed babuli_05 QnA (read only) 8 14-01-2007 11:15 PM
help needed urgent.....Ram hermit QnA (read only) 3 22-05-2006 03:34 AM
Urgent Help Needed!! 144 QnA (read only) 7 26-04-2006 04:22 AM
Urgent help needed vignesh Open Source 6 09-08-2005 08:09 AM
urgent help needed striker_1909 QnA (read only) 7 15-11-2004 11:54 AM

 
Latest Threads
- by Charan
- by Sarath
- by clmlbx

Advertisement




All times are GMT +5.5. The time now is 12:44 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2