Skip to main content

Meta Data in the CMS

When you goto View -> Properties -> MetaData, the form that shows up is treated sort of like a template. You can edit what type of MetaData can be entered by editing the template at /System/metadata.asp.

To access the metadata content from within your asset do the following:


set meta_fields = asset.getMeta(content.item("_cmsId"))
meta_fields.item("title")
meta_fields.item("keywords")
replace(meta_fields.item("description"), vbCRLF, " ")
meta_fields.item("category")

Comments

Popular posts from this blog

Parsing XML Documents in the CMS: 2 Methods

To start off with do this: Dim txt Dim fieldStart, fieldEnd Dim xml Dim fields Dim ltxt Dim key Dim value txt = trim(content.item("_cmsEmailBody")) ltxt = lcase(txt) fieldStart = inStr(ltxt, "<root>") fieldEnd = inStr(ltxt, "</root>") if fieldStart >= fieldEnd then content.add "_cmsError", "Invalid email format. No XML data detected." exit Sub end if ' skip the end /root fieldEnd = fieldEnd + 6 set xml = system.createXML() if not xml.loadXML(mid(txt, fieldStart, fieldEnd)) then content.add "_cmsError", "Invalid XML format." exit Sub end if Now there are two ways to parse it. Method 1: set fields = xml.selectSingleNodeAsContent("root") Method 2: set fields = xml.selectSingleNodeAsDic("root") Check to make sure we have the root node: if not isObject(fields) then content.add "_cmsError", "Invalid xml format. Missing root /root node." exit Sub end if If Method 1 ...

Laravel 5.1 - Step by step instructions for setting up default authentication

Create a Database in MySQL 1. Login to MySQL 2. Run the command to create a database for your application CREATE DATABASE database_name; 3. You'll probably also need to create a user to access the database CREATE USER 'username'@'localhost' IDENTIFIED BY 'some_password'; 4. Then you'll need to grant this user access to the database you created GRANT ALL PRIVILEGES ON database_name.* TO 'username'@'localhost' ;  Configure Laravel Database Connection The DB configuration file is located at /config/database.php. You'll need to edit the following highlighted sections in this file with the values needed to connect to the database you've created from above. Configure Environment If you installed Laravel through Composer, in the root of the Laravel install there is a hidden .env file which is automatically renamed from .env.example . If you didn't user Composer, you'll need to rename this file yourself. ...

Thumbnails from Images that are linked already uploaded to the CMS

' make sure WYSIWYG images don't get too wide using upload.asp value = content.item("_cmsUploadValue") debug.write(value) ext=filename.getextension(content.item("_cmsUploadValue")) ' create a medium size thumbnail if ext="gif" or ext="jpg" then res = image.thumbnail(value, "", 20, 20) if res = "" then content.add "_cmsError", image.errorMsg exit Sub end if content.add "upload#my_photo", res end if %> Then in the post_input.asp we would have the code that would be used to create thumbnails from images that are linked: value = asset.getAbsoluteName(content.item("my_photo")) debug.write(value) 'Process only if selected asset has been uploaded to the /Assets/ folder in the CMS if instr(value, "/Assets/") > 0 then value = "/ChemicalHeritage/ftproot" & value ih = image.load(value) if ih content.add "_cmsError", image.errorMsg exit Sub end if image....