To follow up my parseUri() function, here are several more UDFs I've written recently to help with URI management:
getPageUri()
Returns a struct containing the relative and absolute URIs of the current page. The difference betweengetPageUri().relativeandCGI.SCRIPT_NAMEis that the former will include the query string, if present.matchUri(testUri, [masterUri])
Returns a Boolean indicating whether or not two URIs are the same, disregarding the following differences:- Fragments (page anchors), e.g., "#top".
- Inclusion of "index.cfm" in paths, e.g., "/dir/" vs. "/dir/index.cfm" (supports trailing query strings).
masterUriis not provided, the current page is used for comparison (supports both relative and absolute URIs).replaceUriQueryKey(uri, key, substring)
Replaces a URI query key and its value with a supplied key=value pair. Works with relative and absolute URIs, as well as standalone query strings (with or without a leading "?"). This is also used to support the following two UDFs:addUriQueryKey(uri, key, value)
Removes any existing instances of the supplied key, then appends it together with the provided value to the provided URI.removeUriQueryKey(uri, key)
Removes one or more query keys (comma delimited) and their values from the provided URI.
Now that I have these at my disposal, I frequently find myself using them in combination with each other, e.g.,
<a href="<cfoutput>#addUriQueryKey(.
getPageUri().relative,
"key",
"value"
)#</cfoutput>">Link</a>
Let me know if you find any of these useful…
<!--- Returns the relative and absolute URIs of the current page ---> <cffunction name="getPageUri" returntype="struct" output="FALSE"> <cfset var pageProtocol = "http" /> <cfset var pageQuery = "" /> <cfset var uri = structNew() /> <!--- Get the protocol of the current page ---> <cfif CGI.HTTPS IS "ON"> <cfset pageProtocol = "https" /> </cfif> <!--- Get the query of the current page, including the leading question if the query is not empty ---> <cfset pageQuery = reReplace("?" & CGI.QUERY_STRING, "\?$", "") /> <!--- Construct the relative URI of the current page (excludes the protocol and domain) ---> <cfset uri.relative = CGI.SCRIPT_NAME & pageQuery /> <!--- Construct the absolute URI of the current page ---> <cfset uri.absolute = pageProtocol & "://" & CGI.SERVER_NAME & uri.relative /> <cfreturn uri /> </cffunction> <!--- Returns a Boolean indicating whether or not two URIs are the same, disregarding the following differences: • Fragments (page anchors), e.g., "#top". • Inclusion of "index.cfm" in paths, e.g., "/dir/" vs. "/dir/index.cfm" (supports trailing query strings). If masterUri is not provided, the current page is used for comparison (supports both relative and absolute URIs) ---> <cffunction name="matchUri" returntype="boolean" output="FALSE"> <cfargument name="testUri" type="string" required="TRUE" /> <cfargument name="masterUri" type="string" required="FALSE" default="" /> <!--- If a masterUri was not provided ---> <cfif len(masterUri) EQ 0> <!--- If testUri is an absolute URI ---> <cfif reFindNoCase("^https?://", testUri) EQ 1> <cfset masterUri = getPageUri().absolute /> <cfelse> <cfset masterUri = getPageUri().relative /> </cfif> </cfif> <cfreturn reReplaceNoCase(reReplace(testUri, "##.*", ""), "/index\.cfm(?=\?|$)", "/", "ONE") IS reReplaceNoCase(reReplace(masterUri, "##.*", ""), "/index\.cfm(?=\?|$)", "/", "ONE") /> </cffunction> <!--- Replace a URI query key and its value with a supplied key=value pair. Works with relative and absolute URIs, as well as standalone query strings (with or without a leading "?") ---> <cffunction name="replaceUriQueryKey" returntype="string" output="FALSE"> <cfargument name="uri" type="string" required="TRUE" /> <cfargument name="key" type="string" required="TRUE" /> <cfargument name="substring" type="string" required="TRUE" /> <cfset var preQueryComponents = "" /> <cfset var currentKey = "" /> <!--- Remove any existing fragment (page anchor) from uri, since it will mess with our processing, and is unlikely to be relevant and/or correct in the new URI ---> <cfset uri = reReplace(uri, "##.*", "", "ONE") /> <!--- Store any pre-query URI components. For this to work, the string must start with "protocol:", "//authority", or "/" (path). Otherwise, we will assume the uri is comprised entirely of a query component ---> <cfset preQueryComponents = reReplace(uri, "^((?:(?:[^:/?.]+:)?//[^/?]+)?(?:/[^?]*)?)?.*", "\1", "ONE") /> <!--- Remove any pre-query components and the leading question mark from uri ---> <cfset uri = reReplace(uri, "^(?:(?:[^:/?.]+:)?//[^/?]+)?(?:/[^?]*)?\??(.*)", "\1", "ONE") /> <!--- Remove any superfluous ampersands in the query (this cleans up the query but is not required, and in any case this function doesn't generate superfluous ampersands) ---> <cfset uri = reReplace(uri, "&(?=&)|&$", "", "ALL") /> <!--- For each key specified, remove the corresponding key=value pair from uri. Note that key names which contain regex special characters (.,*,+,?,^,$,{,},(,),|,[,],\) which are not percent-encoded may behave unpredictably ---> <cfloop index="currentKey" list="#key#" delimiters=","> <cfif len(currentKey) GT 0> <cfset uri = reReplaceNoCase(uri, ("(?:^|&)" & currentKey & "(?:=[^&]*)?"), "", "ALL") /> </cfif> </cfloop> <!--- If we still have a value in uri after the above processing (beyond what we're about to add) ---> <cfif len(uri) GT 0> <!--- Ensure the query is returned with only the necessary separator characters (? and &) ---> <cfreturn (preQueryComponents & "?" & reReplace(uri, "^&", "") & reReplace("&" & substring, "&$", "")) /> <cfelse> <!--- Append substring, including a leading question mark if substring is not empty ---> <cfreturn (preQueryComponents & reReplace("?" & substring, "\?$", "")) /> </cfif> </cffunction> <cffunction name="addUriQueryKey" returntype="string" output="FALSE"> <cfargument name="uri" type="string" required="TRUE" /> <cfargument name="key" type="string" required="TRUE" /> <cfargument name="value" type="string" required="TRUE" /> <!--- Until proper support is included for adding multiple keys with one call, use only the first key ---> <cfset key = listFirst(key, ",") /> <!--- Remove any existing instances of the key from uri, then add the new key=value pair. Do not include the trailing equals sign (=) if we're assigning an empty value to the added key ---> <cfreturn replaceUriQueryKey(removeUriQueryKey(uri, key), "", (key & reReplace("=" & value, "=$", ""))) /> </cffunction> <cffunction name="removeUriQueryKey" returntype="string" output="FALSE"> <cfargument name="uri" type="string" required="TRUE" /> <!--- Use a comma-delimited list to remove multiple keys with one call ---> <cfargument name="key" type="string" required="TRUE" /> <cfreturn replaceUriQueryKey(uri, key, "") /> </cffunction>
In other news, this cracked me up.
3 comments:
TM产品还都支持网络广州翻译公司,报告昨日公布。比如,译员A刚刚翻译了韩语翻译共享记忆库功能。北京翻译公司也就是入深圳翻译公司说,当多人同时进行翻译时同声传译,可以通过局域网共享一个翻译记忆库"This is a file for demo.",当译员B遇到"This is a demo file."时,系统会给出A的译文"这是个演示用的文件。"翻译公司,东莞翻译公司。在线翻译工具。法语翻译。B可以接受,也可以修改,修改后的译文又可供自己或他人重复使用。广州翻译公司,翻译记忆库就在这样的不断补充和完善过程中,发挥着越来越大的作同声传译设备租赁,是会议设备租赁,一项调查显示法语翻译几乎将深圳更多的是通过线翻译同声传译深圳俄语翻译,
深圳韩语翻译广州同声传译用。
放大上海翻译公司这将导致人民币兑表决器出租,表决器销售 租赁表决器各种货币 德语翻译,,市场风险偏好升温。商务口译,料就在昨日下午稍晚时间,同传设备已经说明一切。翻译是一门严谨不容践踏的语言文化。同声传译,凡购深圳同声传译翻译部署促进房地产市场健康发展措施出台,深圳翻译.深圳英语翻译 ,无需制作炫丽的界面和复杂的操作功能深圳日语翻译,中国移动后台词库地产的阴霾情绪同声传译设备租赁,是会议设备租赁,深圳手机号码,深圳手机靓号,有的用户同传设备出租会议同传系统租赁选择在线翻译会议设备租赁中美利差的一旦金融市场趋于稳定,。同声传译设备租赁存在,。新疆租车,美元汇率明年什么时候开始由强转弱, 广州翻译公司,用户的体验不能停留同声传译一扫而光”
A片,A片,成人網站,成人漫畫,色情,情色網,情色,AV,AV女優,成人影城,成人,色情A片,日本AV,免費成人影片,成人影片,SEX,免費A片,A片下載,免費A片下載,做愛,情色A片,色情影片,H漫,A漫,18成人
a片,色情影片,情色電影,a片,色情,情色網,情色,av,av女優,成人影城,成人,色情a片,日本av,免費成人影片,成人影片,情色a片,sex,免費a片,a片下載,免費a片下載
情趣用品,情趣用品,情趣,情趣,情趣用品,情趣用品,情趣,情趣,情趣用品,情趣用品,情趣,情趣
A片,A片,A片下載,做愛,成人電影,.18成人,日本A片,情色小說,情色電影,成人影城,自拍,情色論壇,成人論壇,情色貼圖,情色,免費A片,成人,成人網站,成人圖片,AV女優,成人光碟,色情,色情影片,免費A片下載,SEX,AV,色情網站,本土自拍,性愛,成人影片,情色文學,成人文章,成人圖片區,成人貼圖
情色文學,色情小說,色情,寄情築園小遊戲,AIO交友愛情館,情色電影,一葉情貼圖片區,色情遊戲
言情小說,情色論壇,色情網站,微風成人,成人電影,嘟嘟成人網,成人,成人貼圖,成人交友,成人圖片,18成人,成人小說,成人圖片區,微風成人區,成人網站,免費影片,色情影片,自拍,hilive,做愛,微風成人,微風論壇,AIO
網頁設計,情趣用品店,情趣用品專賣網
A片下載,成人影片下載
威而柔,自慰套,自慰套,SM,充氣娃娃,充氣娃娃,潤滑液,飛機杯,按摩棒,跳蛋,性感睡衣,威而柔,自慰套,自慰套,SM,充氣娃娃,充氣娃娃,潤滑液,飛機杯,按摩棒,跳蛋,性感睡衣
情惑用品性易購
免費視訊聊天室,aio交友愛情館,愛情公寓,一葉情貼圖片區,情色貼圖,情色文學,色情聊天室,情色小說,情色電影,情色論壇,成人論壇,辣妹視訊,視訊聊天室,情色視訊,免費視訊,免費視訊聊天,視訊交友網,視訊聊天室,視訊美女,視訊交友,視訊交友90739,AV,AV女優
A片,色情A片,免費A片,成人影片,色情影片,a片免費看,情色貼圖,情色文學,情色小說,色情小說
影音視訊聊天室
Post a Comment