meta

Display the meta/control key in a JLabel

We want to show a hint for a JList that the user can select multiple items with the platform dependent key for multiselect. However I have not found any way to show the OS X COMMAND symbol in a JLabel, which means the symbol that's printed on the apple keyboard on the command key, also called apple key. Here's a picture of the symbol ...

Is the meta type="title" tag needed and what's the best format for the title tag?

I have seen some websites use the following tag: <meta type="title" content="Title of the page" /> Is it needed when you have a <title>? Also, what's the best formatting for a page title? Some ideas: Page Description :: Company Name Page Description - Company Name Page Description <> Company Name Company Name: Page Description ... ...

HTML <head> best practices

There are <meta> tags and other things you can place in the <head> of your HTML document. What <meta> tags etc. and best practices do you make use of in your HTML document to make it more accessible, searchable, optimized etc. ...

Saving Meta in OS X Terminal

Since Terminal appeared I've saved as ~/mySrvr.term a modified stock .term file which opens to execute an ssh to a remote server and to modify the appearance. I have NOT been able to save "use option key as meta" for emacs-ery; there's no slot for it in the term file and I'm reluctant to wrestle with a keyboard dictionary file. Am I miss...

Is there a generic term for "GUI-Element"?

The question may sound silly and it might not even be a programming question. At least it's a programming meta question (about talking about programming). What I want to know is if there is a generic, widely understood term for GUI elements. I have programmed so many GUI toolkits, I couldn't tell if Windows-only programmers know what th...

elegant solution for automatic downloads

I am currently using the meta http-equiv='Refresh' to automatic start PDF downloads. however this has different effect on each of the browsers. The main problem is with IE (6 & 7) once the user is redirected to the PDF if the user click the back button they are sent back to the page that initiated the download and then promptly redirec...

Has anyone ever used AOP to detect a circular reference?

I don't know, so that you could throw a CircularReferenceException? ...

Html meta keywords should contain commas?

Hi, is it important to use commas in the meta keywords? What if I don't have the commas? ...

How can I make my PHP-based cron job execute more often?

I have a file "update.php" which does some MySQL operations. A cron job executes this file every 5 minutes. Unfortunately, I cannot execute the cron job more often. So I had the idea that I could add ... <html> <head> <meta http-equiv="refresh" content="2; URL=<?php echo $_SERVER['SCRIPT_NAME']; ?>" /> </head> <body></body> </html> ...

What is the PostInfo Meta Tag that appears in my ASP page?

I've got a tag that looks like this: <meta name="postinfo" content="/scripts/postinfo.asp"> that's appeared in my default.asp in a classic ASP application. What is it and can I remove it? ...

Online tool for crawling a website and retriving all meta information for every page

Does anyone know of a free online tool that can crawl any given website and return just the Meta Keywords and Meta Description information? ...

C# Wrapper for Media File Meta Data

I am looking for a nice wrapper for extracting media file attributes dependent of file type. I am creating a bit of a generic media library that can handle video, audio, images etc. They are not just .wmv or .mp3, i would like to be able to support various formats and dont want to pigeon hole myself to an sdk like WMP SDK that seem to on...

How to search Google for <meta name="author">

Is it possible to search Google for all sites built by a specific author declared by a meta author tag? eg http://www.google.com.au/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=v6J&amp;q=%3Cmeta+name%3D%22author%22+content%3D%22Fred+Smith%22%3E&amp;btnG=Search&amp;meta= ...

blog post content via url parameters (meta) in wordpress

i am trying to create an url which will set the blog post like ./wp-admin/post-new.php?post_title=title i know that post_title, content and excerpt will work for this, but i dont know how to set meta tags. i need this to create a new posting when clicking on a map (openlayers) and automaticaly set longitude and latitude in meta tags. ...

Unified Process and UML confusion

Hi Im a bit uncertain about the relation between the Unified Modeling Language (UML) and the different modelling perspectives (conceptual, specification and impelementation) endorsed by (R)UP among other OOA/D methodologies. From what I understand the same type of diagram using the same notation can have different meaning depending on...

creating keywords dynamically from mysql using php

Hi, My structure: in each category there are texts. These texts are entries of its own. So, table 'category' and table 'texts'. There are about 90 texts in every category, each text is about 300 characters. What i want to do is to make meta tags (keywords) for the categories. How to> get all relevant 'texts' and rank all words and take...

Adding attributes into Django Model's Meta class

I'm writing a mixin which will allow my Models to be easily translated into a deep dict of values (kind of like .values(), but traversing relationships). The cleanest place to do the definitions of these seems to be in the models themselves, a la: class Person(models.Model, DeepValues): name = models.CharField(blank=True, max_length...

Regular Expressions for matching functions in javascript source code?

Is there any way to match a function block in javascript source code using regular expressions? (Really I'm trying to find the opposite of that, but I figured this would be a good place to start.) ...

meta description quotes escape

html code meta tag description, it is generated dynamically and we have quotes in the description part and search engines didn't read everything. it shows until the quotes begins in the search results how to deal with it ...

Ruby: Inherit code that works with class variables

The situation: I have multiple classes that should each hold a variable with a configuration hash; a different hash for each class but the same for all instances of a class. At first, i tried like this class A def self.init config @@config = config end def config @@config end end class B < A; end class C < A; end Bu...