Oct 06, 2008, 11:45 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
modxcms.com web
  MODxCMS.com   Forums   Help Login Register  
Pages: [1]   Go Down
  Print  
Author Topic: Template as file  (Read 4555 times)
0 Members and 1 Guest are viewing this topic.
WijbaL
Jr. Member
*
Posts: 1


« on: Dec 24, 2006, 05:07 PM »

Is it posible to use template files instead of making templates in resources-templates?

it will be a lot easier to edit.

ive tried to include a snippet that includes my template and that works but is there a way to do it without snippets?
or any other tips

thx, WIjbaL
Logged
zi
MODx Special Forces /
Administrator
*
Posts: 2,941


May Peace Be On You


WWW
« Reply #1 on: Dec 25, 2006, 09:18 AM »

AFAIK, I think snippets are the only way to include php scripts.
Logged

“Internet Explorer’s CSS rendering: WYSIWTF”. — someone genius
--------------------------------------------------
chodorowicz
Jr. Member
*
Posts: 6


« Reply #2 on: Mar 20, 2007, 01:18 PM »

I just wanted to ask if anything changed in this issue, that is what's the best way to include a template from a file

editing template in modx manager isnt so convenient and copy&paste method gets really tiresome

thanks for the answer in advance and thanks for such a wonder which modx surely is - it's awesome project Smiley

greets!
Logged
ER
Full Member
***
Posts: 147



WWW
« Reply #3 on: Mar 20, 2007, 02:13 PM »

This is completely possible.  Here's how you do it...

Create a Snippet called includeFile and copy-n-paste in this code:

Code:
<?php
# Snippet to include files from filesystem
# [[includeFile? &file=`assets/templates/mytemplate/file.html`]]

if ( !isset($file) || $file== "" ) return "No file specified."; //check if there's a file given.

//Start the buffer
ob_start();

//include
include $file;

//get contents from the buffer
$ob_contents = ob_get_contents();

//and kill/delete the buffer
ob_end_clean();

//return it to MODx
return $ob_contents;
?>

Once you save that, make a new Template or edit your existing template.  Erase any Template code you have in there and paste in this call to the includeFile Snippet you just created:

Code:
[[includeFile? &file=`assets/templates/YourTemplateName/YourTemplateHTMLFile.html`]]

I took this from the code I found in the Molio templates.  It works perfectly for me.  I hate having to always paste in my new HTML code after I edit it on my local machine.

Cheers!
Logged
chodorowicz
Jr. Member
*
Posts: 6


« Reply #4 on: Mar 20, 2007, 02:53 PM »

many thanks, works perfectly Smiley
Logged
Sylvaticus
Sr. Member
****
Posts: 272


I think, therefor I am. But what I am, and why...?


WWW
« Reply #5 on: Mar 21, 2007, 06:13 AM »

This looks great. A question: Do you then have an auto-transfer of your html-template-file? Or how do you do this? To make this efficient, i mean?
Logged
ER
Full Member
***
Posts: 147



WWW
« Reply #6 on: Mar 21, 2007, 07:32 AM »

Well, my workflow is this:

1) Edit HTML in Dreamweaver on my local machine.
2) Upload the HTML file(s) within Dreamweaver's FTP function to the live site.

I imagine a lot of web developers/designers work this way, so that's why editing the HTML within MODx's template page is such a pain.  Even if you don't have Dreamweaver, it's just as easy to drag-n-drop the files over to the live site through any FTP client.

Another way I work is actually even easier for me.  I'm on a Mac and I use YummyFTP.  With that FTP client, I can find the file on the live site that I want to edit, then click on the editor button and it downloads the file to my editor of choice (TextMate), I make my edits and when I hit save, YummyFTP automatically uploads the saved file back to my live site.  I do this when I'm making small changes since I don't use TextMate fulltime (yet).

So you can see there's lots of options for you to make this as efficient as possible.
Logged
rthrash
Foundation
*
Posts: 9,269



WWW
« Reply #7 on: Mar 21, 2007, 07:45 AM »

I use the same technique with Textmate and Transmit er16004. I think you'll reallly like what the future has in store. Wink
Logged

MODx is a framework that allows web professionals to turn over sites to end-users for daily maintenance without worrying. Community participation and questions are encouraged, especially when you help us help you, read the wiki, and review snippet parameters – even if you have to look at the source. Searching the forums helps, too.
Ryan Thrash
MODx Co-Founder
Principal @ Collabpad
work productively.
work intelligently.
work together.
Whitefen
Full Member
***
Posts: 128



« Reply #8 on: Mar 28, 2007, 05:55 AM »

For anyone interested in other Mac software options...

Most of the major Mac FTP clients integrate with BBEdit using the same kind of direct integration as you mentioned with YummyFTP and TextMate.

This system works very efficiently for me.
« Last Edit: Mar 28, 2007, 06:01 AM by Whitefen » Logged

"Regret for the things we did can be tempered by time; it is regret for the things we did not do that is inconsolable."
  --  Sydney Harris
ER
Full Member
***
Posts: 147



WWW
« Reply #9 on: Mar 28, 2007, 07:48 AM »

"...And I'm a PC":

FileZilla for FTP: http://sourceforge.net/projects/filezilla
EditPadLite for editing text (better than Notepad): http://www.editpadlite.com/

Both of these are free and can do what we're talking about on the Mac... but with less fun.
Logged
sottwell
Documentation Team
*
Posts: 8,137



WWW
« Reply #10 on: Mar 28, 2007, 08:32 AM »

SubEthaEdit is really fancy, not only do the major ftp clients use it for a default editor (I use Cyberduck) but it also has multiple editor collaboration over either local networks or the Internet, using "Bonjour". Different color highlighing for what the other editors are doing, in real-time. But it's not free any more. So I started using Smultron, which pretty much does the same thing without the collaboration. I still prefer SubEthaEdit's layout, though.
Logged

sottwell.com has moved to a lovely Solaris 10 server!
Log in username guest, password guestuser.
Templates are now becoming available at http://sottwell.com/templates.html
rthrash
Foundation
*
Posts: 9,269



WWW
« Reply #11 on: Mar 28, 2007, 08:36 AM »

I've used SubEthaEdit's collaboration feature at a conference and it's incredibly cool.
Logged

MODx is a framework that allows web professionals to turn over sites to end-users for daily maintenance without worrying. Community participation and questions are encouraged, especially when you help us help you, read the wiki, and review snippet parameters – even if you have to look at the source. Searching the forums helps, too.
Ryan Thrash
MODx Co-Founder
Principal @ Collabpad
work productively.
work intelligently.
work together.
myfriendscallmebill
Member
**
Posts: 75



« Reply #12 on: Mar 29, 2007, 12:22 AM »

Is it posible to use template files instead of making templates in resources-templates?

Name your template file "myTemplate.html"

Place it in "/assets/templates/myTemplate.html"

Create a template variable named "templateTV"
Make it's input type = "file"
make it's default value = "@FILE assets/templates/myTemplate.html"

Create a document template named "myTemplate"
Go back to the template variable and make it available to this template.
Then return to this template and set its contents to "[*templateTV*]"

Create a MODx document.
Set its template to "myTemplate".

Now you can edit your template file in Dreamweaver, etc. then upload it to /assets/templates/myTemplate.html, and when you refresh your MODx document you'll see your changes.

Is that what you wanted?
« Last Edit: Mar 29, 2007, 12:26 AM by myfriendscallmebill » Logged
Pages: [1]   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP

Copyright © 2005-2008 MODxCMS, All rights reserved. Contact Us
Styles by ziworks.com

Powered by SMF 1.1.4 | SMF © 2005, Simple Machines LLC

Valid XHTML 1.0! Valid CSS!