namespaces

Namespaces on godaddy shared hosting

phpinfo() says that the version is 5.3 and namespaces are activated.. But I keep getting 'Parse error: syntax error, unexpected T_STRING' in the line where the word 'namespaces' appear =s. The script works fine in my local enviroment, I mean I know how to declare a namespace. Of course, they refused to help, and pasted me a link to the...

Declare object and its prototype in a JSON block

I'd like to fake a namespace in Javascript. This can be done as follows: var cars = {}; cars.car = function() { ... } cars.car.prototype = { drive: function() { ... } } Works fine. My question, however, is if I can directly fill the whole namespace with JSON, like this: var cars = { car: function() { ....

What is the CSS “@media” nested structure/namespace?

What is this name space like wrapping/nested structure in CSS? I have never seen this before. Please help me understand what is this. Thanks @media screen, projection { * { margin: 0px; padding: 0px; } body { background: #fff; overflow-y: scroll; _overflow-y: none; } } ...

asp.net webforms - how to handle multiple pages with the same name in one web project?

I have a web application with several different top-level directories, and some of the pages with different directories have the same name - for example: foo/ search.aspx list.aspx bar/ search.aspx list.aspx baz/ search.aspx list.aspx etc. The problem is that the class names for the code-behind files conflicts - each se...

What does the using directive do,exactly?

Hi, On MSDN I can read what it does, but I would like to know what it does technically (tells compiler where to look for types..)? I mean using as a directive. ...

.net : namespace : what is exact difference in writing USING directives before or after namespace

What is exact difference in writing USING directives before or after namespace declaration. Example : using System; using System.Linq; using NUnit.Framework; namespace HostTest { /** code goes here **/ } and namespace HostService { using System.Runtime.Serialization; using System; /** code goes here **/ } ...

Namespaces to avoid conflicts - example?

I read that way back programmers have to think of special names for their classes in order to do not conflict with another one when the file got loaded on users PC. That is what I do not understand, if the class was within e.g. DLL, how it could collide with other class on that PC? Even without namespaces, if I import a DLL, I guess I w...

C# - Get namespace function belongs to?

Something alike, if I input the string "Console.WriteLine", it would return -> "System.Console.WriteLine" I assume there's some way via Reflection. ...

'ListViewWebPart' is a 'namespace' but is used like a 'type'

Hi I get the error 'ListViewWebPart' is a 'namespace' but is used like a 'type' here is my code i don't know how to fix this any ideas? namespace TestSolution { [Guid("d3425822-6979-476d-a8cb-04de9521d1b4")] public class TestListViewWebPart : System.Web.UI.WebControls.WebParts.WebPart { public TestListViewWebPar...

How to use same named class in PHP without namespacing?

I have a problem, where I have two third party libraries classes that I have to extend and use together. But both have the same naming convention and two class name end up having the same name. Since I cannot extend two classes, I don't know how to fix them, how to create a wrapper against one. I cannot use PHP Namespaces as the PHP ver...

Any way to strip namespace garbage from XML file?

I need to select some nodes from an XML file (AppNamespace.xaml from a Silverlight XAP file, not that it matters), but the file has namespace stuff so XPath doesn't work. I could waste most of a day trial-and-erroring the bondage-and-discipline nightmare of XmlNamespaceManager and end up with hopelessly fragile code that can't tolerate t...

How to access a View by an ID of the android namespace

In hierarchy viewer there are several IDs as shown above, for example "id/timepicker_input". But I can't find a respective timepicker_input - ID when typing myNumberPicker.findViewById(android.R.id. ...? ); So how to access these Views by their ID? ...

Jquery/Javascript

Good morning peoples. I have a bit of a slight jQuery question/problem that I am not sure how to tackle. I have a click handler bound to varying classes on some anchor tags (which works great). I have now come to a page that needs an extra handler on the same anchor tags so I decided to use some namespacing to get the desired result. T...

Creating a namespace to "import" a database class in vb.net 2005

I need to create a namespace for my database class file, so I can call the database procedures within my webservice module. How can I create a namespace to call that Db class file? ...

JAXB in java 6 not prefixing the correct namespace prefix in marshalled XML file

Hi I have a schema with following attributes in schema element: <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:abc="http://abc.example.com" targetNamespace="http://abc.example.com" elementFormDefault="qualified" attributeFormDefault="unqualified"> I could compile it and get java classes. Using these classes, I filled in data ...

Is using namespace..like bad?

Possible Duplicate: Why is 'using namespace std;' considered a bad practice in C++? Every time I use using namespace std I always get that "thats a terrible programming habit". Now I'm graduating this December with my B.S. in C.S. but I don't claim to know everything, but no one has ever explained why this is so bad. I underst...

Refactor the namespaces in a SOLUTION

I am changing the Default Namespace for my projects in the solution. I can use Resharper for example to adjust the namespaces for me in ONE project. but I am looking for some tool that can adjust the namespaces in the whole SOLUTION. I am using VS2008 pro. is there a refacotring tool that can adjust the namespaces in the all projects of...

Blend 4 can't find namespaces in C++/CLI .dll

My WPF4 XAML has bindings that reference objects in my C++/CLI .dll. In VS2010 the XAML passes verification, but Blend 4 is very borked. It can't find the namespace within the CLI dll. In the 2008/.NET 3.5 days I could remove the project reference and replace with the compiled .DLL in Blend and go on my merry way but this doesn't work ...

Problems in the global namespace when I try to use my custom server control (in the App_Code directory)

Traditionally I use the regular asp.net website (created using the File > New Website). Recently, I opted to work off of a full fledged project (created using File > New Project > ASP.net Web Application). I've been using the same custom controls for years without incident. I simply create the new website, place my CustomControls.cs f...

C++: "Class namespaces"?

If in C++ I have a class longUnderstandableName. For that class I have a header file containing its method declaration. In the source file for the class, I have to write longUnderstandableName::MethodA, longUnderstandableName::MethodB and so on, everywhere. Can I somehow make use of namespaces or something else so I can just write Metho...