metadata

Edit ASP.NET Dynamic Data visibleTables Display Names?

I've figured out how to use metadata to define the displaynames for table data I want to rename - but I haven't figured out how to do this to the tables themselves - so that when the initial dynamic data menu comes up the menu options are friendly rather than the actual table names. Any suggestions? ...

Is there a meta tag for website content rating?

A client of mine said she noticed her site was blocked in a grocery store's wifi cafe. It contains nothing scandalous - it is just a travel blog. It said the reason for the restriction is Forbidden Category "Not Rated." Is there some way to apply a rating to web content so that it won't be blocked? I've never come across this problem b...

Viewing oracle's metadata about primary/foreign key constraints.

Which table contains detailed information(For example the table the foreign key is referring to) about the constraints? The tables 'all_cons_columns' , 'all_constraints' contains only the name of the constraints which isn't very helpful. I am currently using dbms_metadata.get_ddl() but it doesn't work on all the databases. Thanks. ...

How can I distinguish 'Meta data change' from 'File change'

Hi Everyone! My Resource(XML file)'s listener has two type of events as following. IResourceChangeEvent.POST_CHANGE | IResourceChangeEvent.PRE_BUILD When POST_CHANGE occurs, My plugin will parse the Resource(XML file). And when PRE_BUILD occurs, My plugin will add Problem Mark as following IMarker marker = file.createMarker(PR...

Proper embedded Ruby Code writing

I am trying to write this : %meta{ :name => "keywords", :content => "#{@page_city}, #{truncate_words(@page_keywords, 7) || 'Meta, Words, Are, Dope, For, SEO'}"} Basically it sees if there is a local page that has a page city or keywords and adds those as they meta keywords. If it doesn't, it says the latter. This works, but the onl...

Not sure how to programmatically filter by taxonomy metadata in my custom search webpart.

I have pages in a pages library on a publishing site which have a managed metadata (taxonomy) field in their content type. I want my custom search webpart to read the taxonomy set on its parent page (I can do this fine) and then query against a specific scope using only the selected tags of the parent page as the filter (no keyword neces...

Inserting/Updating XMP in a PDF ?

How can I insert/update some XMP metadata into a PDF file preferably using java ? ...

Hidden column significance in table?

Possible Duplicates: metadata for determining unsed columns How can you tell which columns are unused in ALL_TAB_COLS? Hi, I have to fetch only used column names from all_tab_cols only not unsused ,may i know hidden_column column is marked 'Y' for unused_column only or their some other reasons also. ...

Is it possible to add custom metadata to file

I know that each file has metadata like title, subject, keywords and comments: http://my.jetscreenshot.com/2777/20100713-vu9m-31kb.jpg but what if i need custom metadata like tags for example is it possible to do it with C#? ...

Writing EXIF metadata to images in Android

Hi, I want to store some metadata in images. My camera application gives me a bitmap, which I store in the storage (MediaStore) device. In addition to this, I want to add a few tags to the picture in its metadata. I think EXIF is a good way of doing this. But I couldn't find good references on how to do this. If there are some tools to ...

Are Java meta-annotations available at runtime?

I have created a meta-annotation and applied it to an annotation but can't find any way to find what meta-annotations are associated with the annotation at runtime. Is this actually supported in JDK 6? E.g.: /** * Meta-annotation for other annotations declaring them to be "filter" annotations */ @Target(ElementType.ANNOTATION_TYPE) ...

Entity-Framework EntityConnection MetaData Problem

We are trying to build an EntityConnection dynamically so that different users are connecting to differnet databases determined at run-time. In order to do this we are testing the code found here: http://msdn.microsoft.com/en-us/library/bb738533.aspx. We have implemented this below: ' Specify the provider name, server and database. Di...

What is the maximum size of JPEG metadata?

Is there a theoretical maximum to the amount of metadata (EXIF, etc) that can be incorporated in a JPEG file? I'd like to allocate a buffer that is assured to be sufficient to hold the metadata for any JPEG image without having to parse it myself. ...

Filling in a multi-choice field in a Sharepoint Doc-Lib using SetDocsMetaInfo Frontpage Server Extentions RPC method

I've been given a big chunk of code which eventually calls upon the SetDocsMetaInfo method from Frontpage Server Extension RPC. This is easy enough for most document uploading and property updating, except when dealing with multichoice fields. I've been scouring through MSDN and I can't find anything on how to fill in multiple values f...

What Stored Procedure can check logins (roles) information

SQL Server 2000. Is there any SP can list what databases are owned by a specific login(role)? Like: EXEC sp_xxxx 'myloginname' I want to see a set of database names that's owned by myloginname. Thanks. ...

meta information not being picked up by facebook

I've asked this question on the facebook and ping.fm developer forums, but they don't seem to be very busy at the moment. So lets see what you lot can do... I have included meta tags for title, description and image_src on my site so facebook can pick this information up and display it on users's posts on facebook. I am using ping.fm to...

SQL select for all records that may holds specific value

How to select all records,that may contain specific value that is known, without referring to specific column in SQL expression? For instance, i know,that some unknown column holds value 'xxx' and there are many columns and records in table. Thank you. ...

Can i get a meta value with jQuery/JS?

Hi all, Im struggling to find any information on getting meta values. I have a locale set in the meta on a few sites and would like to use a centralised js file so i need to grab the value from say for example <meta name="locale" id="locale" content="en_ZA" /> hmmmm.... Many thanks ...

Should I remove trailing slashes in meta tags?

Hi All, W3c markup validation is asking me to remove trailing slashes on my page. Is this correct?...and will my page still be compliant in all browsers? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"&gt; <meta http-equiv="content-style-type" content="text/css" **/**> Many tha...

How do I use methods in classes decorated with DataContractAttribute in a WCF Client?

I'm writing a .net WCF service. I've written a few classes that I want to return to the calling code from the WCF service; hence, I decorate them with the DataContract attribute. Let's suppose that my WCF service is called FooService. It contains a method called FooMethod which returns an object of type FooData (which is decorated wit...