tags

CKeditor - Custom tags and symbols inside the editorwindow.

When you insert a flash object into the CKeditor the editor window will show this symbol: I was wondering. Is it possible to do something similar when users inserts this tag into the editor (using regex {formbuilder=(\d+)}/ ): {formbuilder=2} If so, could someone please explain how to? :) UPDATE: I've been looking at the PageBreak...

Recommendations on structure for Mongoid/MongoDB Tree of Tags

Hi, I'm looking for some recommendations on how to structure the tags part of this data model: Here's a simplified version of it: a Site has many Posts (relational association [references_many in mongoid speak]). A Site has a tree of tags a Post has an array of tags (subset of the Site's tags, order doesn't matter) The use cases I...

Best way to store and search keywords for a record in PHP and MySQL?

I haven't touched any code in a good 4-5 months so just getting back into it today, usually takes me a week or so to get all the info flowing through my brain again once I take months off like that. So my project I am about to start will be a PHP/MySQL backend bookmarks database. I want to create a nice searchable database with all m...

Remove HTML tags from string (R Programming)

Hello all, Is there an easy way to remove HTML tags from a character string in R? Currently I'm extracting out survey data from an XML document and for the title of the question have HTML from the survey design in it, like this. "Why did you give this performance question a low score?<br />" Any way to easily remove the <br />? An...

data structure in autocad drawings

Hi all, I have to read all the tags out of an autocad drawing with information about the model, the cell, the tagset etcetera in which they were found. Are the following assumptions correct; tags are only found in tagsets. multiple tags within a tagset can have the same name. tagsets are only found in cells. the names of tagsets with...

Including a manual Rails tag in my form's parameters

This question is related to this other question: http://stackoverflow.com/questions/2003732/change-rails-text-field-form-builder-type I have a JQuery Tools Range in my form, and making it work requires that the input field be of the type "date". Rails doesn't easily allow me to do this so I've used a manual tag as follows: <% form_for ...

Ordering items with matching tags by number of tags that match

I'm trying to figure out how to order items with matching tags by the number of tags that match. Let's say you have three MySQL tables: tags(tag_id, title) articles(article_id, some_text) articles_tags(tag_id, article_id) Now let's say you have four articles where: article_id = 1 has tags "humor," "funny," and "hilarious." article...

Django: Login form in template tag

I've made a template tag to display a login form on various pages of my site. The idea behind that is also, that after logging in you see the same page/content as before and you don't get redirected to another page. I could do form validation & logging-in without any problems in the template-tag's render method, but the problem is, that...

GIT: is a tag unique per commit?

If you can use a tag only once (unique by commit), what do I do with 7 commits in tag "Version 7.3"? I hate that GIT doesn't make revision numbers (like SVN :)). I guess a subquestion would be: What would be a best practice to 'control' version numbers (ex revisions, so I want to save major.minor in every commit and DEFINITELY in every ...

php strip_tags: allows <br />?

Hi, How it is possible to allow <br /> in strip_tags() or any way I can get around to it? <?php $text = '<p>Test <br />paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>'; echo strip_tags($text); echo "\n"; // Allow <p>, <a>, <br /> echo strip_tags($text, '<p><a><br />'); echo "\n"; // Allow <br /> only echo strip_tags...

CKEditor:Custom Tag Wrapper Buttom

Hey, I want to create a custom button in CKEditor. The button should work exactly like "bold" and "italic" buttons. I want to wrap the html with an h2 tag. I know I can use the styles dropdown but I would like to have a special button for it. The button should get a "clicked" icon when the cursor is on a text wrapped in h2 and by clickin...

SQL query for multiple tag inclusion

I´m net very good in explaining this. But i do my best: I've made a tagging tool for people. Some people contains more then 1 tag, and i need to get those but dont know how to write the SQL query for multiple tag inclusion. I know you can't write WHERE conditions like this: LOWER( peoples_tags.tag_id ) = 'outside' AND LOWER( peoples_ta...

asp.net mvc tags: <%: %> vs. <%= %>

As far as I can tell, both of these tag types do the same thing. Which is preferred to use? ...

UIView ivar vs. tagging a local UIView var

Scenario 1: For a UIViewController, is it better to (1) create an ivar for a UIView that I access again in 1 or 2 functions outside of loadView? Or, (2) should I just tag it in loadView and then use - (UIView *)viewWithTag:(NSInteger)tag to access it again in the other functions? I'm guessing that option 1 increases the memory by the siz...

How does iTunes read/write Audio file tags

I'm wondering how does iTunes read/write Audio file tags, using which framework, api or something. I haven't found any information about this at apple's development document. Due to the open software license, iTunes should only use apple's framework, I think, but can't find any example. Help me please ...

page opening in data object window

Hi, I have an html homepage, at bottom too, I have place menu options. This I have done using object tag and calling another page, through object tag's data attribute, having menubar code. Now the problem is when I try to open any link using this bottom menu those links gets open in this data object window only. Where I want when I cli...

Using JavaScript (jQuery), how can I cycle through all 'a' tags on a page, one at a time, and assign an individual style to each?

Let me try to explain... Lets say I have the following 'a' tags on a page: <a href="img1.jpg" class="myClass" alt="0,0,600,200"></a> <a href="img2.jpg" class="myClass" alt="200,0,600,75"></a> <a href="img3.jpg" class="myClass" alt="275,0,600,200"></a> <a href="img4.jpg" class="myClass" alt="475,0,600,50"></a> <a href="img5.jpg" class="m...

Rendering my own <script> tag instead of the one provided by JSF

Hi guys, I have page which consists of couple fragments and in the "header" fragment I have this tag <webuijsf:script id="script_logo" url="/resources/logo.js"/>. This is rendered in HTML as <script src="/app/resources/logo.js" type="text/javascript" id="Header:script_logo"></script>. This is fine and it is working as expected. Now I nee...

RegExp replace a specific XML/HTML TAG in PHP

Hi all, I have a little script that replace some text, that come from a xml file, this is an example: <b>Hello world,</b> <include file="dynamiccontent.php" /> <img src="world.png" /> a lot of <i>stuff</i> Obviosly the string is much more longer, but I would like to replace the <include file="*" /> with the content of the script in t...

Aesthetic question about Xstream XML output

Hi all, When I output an XML file using Xstream with a custom converter, all the nodes are printed out nice and indented etc., however when I print out another object, there is no new line between the end object tag and the new object tag. Take the example below: </macroblock> </frame> </MetadataFrame><MetadataFrame frame="456"> ...