The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
1k views

Why I can't extend bool in Python?

>>> class BOOL(bool): ... print "why?" ... why? Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: Error when calling the metaclass bases ...
0
votes
1answer
3k views

NHibernate Join and Restriction Criteria

Im trying to write an NHibernate criteria that effectively joins and restricts at the same time. My DB looks like this... Cases ---> CustomerProducts <--- Customers Cases ---> CaseStatuses Each ...
3
votes
6answers
497 views

Restrictions on PHP include()

Hey guys, I am separating some XHTML from PHP by putting the XHTML into a separate file and then using PHP's include() function within the PHP script. This works perfectly fine, however, users are ...
0
votes
3answers
485 views

Webservices to IP restriction

I have built a webservices, but it can accessed by all poeple. I want to it only used by the IP which I assigned. it's possible can do it on the webservices code. I was using vb
2
votes
1answer
424 views

Windows 7 Ribbon licensing vs Office 2007 Ribbon licensing

If I recall correctly one of the limitations of the Office 2007 Ribbon UI was that you cannot use it to compete with other MS Office products like Word or Excel. Does this same restriction apply for ...
2
votes
1answer
423 views

XML Schema: What does a restriction with only a base attribute mean?

What would it mean to create something like the following? <xsd:simpleType name="myField"> <xsd:restriction base="xsd:boolean"/> </xsd:simpleType> Notice there are no actual ...
0
votes
3answers
568 views

how to restrict an input in c

I want to prevent my program from any other types of input instead of int. How to check the type of an input without assigning it to a variable? in C
1
vote
4answers
884 views

Hibernate entity with restriction

We have a DB table that is mapped into a hibernate entity. So far everything goes well... However what we want is to only map enentitys that satisty a specific criteria, like ' ...
4
votes
5answers
1k views

Restricting an IP if it is between an IP Range

Ok, it's friday afternoon, and i've had a long week so would appreciate some help! Currently, i have a list of IP ranges, as follows: List<IPRange> ipRanges = new List<IPRange>(); ...
4
votes
3answers
11k views

Eclipse 3.5.1 Compiler Error :The type OutputFormat is not accessible due to restriction on required library ../rt.jar

This error is weird and i cannot make much sense of it. I've installed EclipseRCP 3.5.1, Java SE 1.6 update 16 and switched to SWT 3.5. I've created a new project, set up the dependencies and tried to ...
1
vote
2answers
112 views

Restrict application usage

I would like to restrict people using my application to one Computer, so I was thinking about IP's.. but people in some countries get new IP's after they reboot their Internet.. so I need something ...
0
votes
1answer
1k views

Video streaming API

Current situation: Users are downloading the whole video clip (>70mb or >140mb). This is not as effective as we would like. [I am a non programmer looking for a solution]... I want to be able to ...
0
votes
2answers
344 views

crawler gets stuck on the mandatory agecheck page in Drupal

we have a big community website build in drupal, where the site has a mandatory agecheck before you can access the content of the website it checks for a cookie to be present, if not, you get ...
0
votes
3answers
372 views

XSD restrictions

Is it possible using XSD to restrinct node names to enumeration, and then based on this enumeration add another restrictions? In example, I have this xml: <a> <b name="string" ...
18
votes
2answers
14k views

How to achieve “not in” by using Restrictions and criteria in Hibernate?

I have list of category. I need a list of category by excluding 2,3 row. Can we achieve through hibernate by using Criteria and Restriction?
0
votes
4answers
134 views
0
votes
3answers
400 views

Google Crawler Time Restriction

does anyone know that it is possible to setup any property in order to inform googlebot to just come and crawl the site during specific day or time period (eg. during the weekend only)? thanks,
4
votes
4answers
854 views

Limitations of Java desktop applications?

I come from a C/C++ background and now do a lot of C# stuff. Lately I have become interested in doing some projects in Java since playing around with the Android SDK. I know that Java apps run in a ...
2
votes
5answers
605 views

Safe Python Environment in Linux

Is it possible to create an environment to safely run arbitrary Python scripts under Linux? Those scripts are supposed to be received from untrusted people and may be too large to check them manually. ...
5
votes
5answers
365 views

What is the most hostile corporate environment to deploy a .NET WinForms app on?

Suppose you were writing a network-based WinForms application which is supposed to run in a "paranoid" environment due to restrictive company policies at the customer site. What kind of restrictions ...
34
votes
1answer
19k views

Add attributes to a simpletype or restrictrion to a complextype in Xml Schema

The problem is as follows: I have to following XML snippet: <time format="minutes">11:60</time> The problem is that I can't add both the attribute and the restriction at the same time. ...
2
votes
10answers
2k views

How can we restrict the user from saving a web page?

How can we restrict a user from saving the page? Please provide some tips to disable File->Save and View Source options EDIT: Obviously it can't be done, and probably shouldn't be attempted. But ...
11
votes
1answer
16k views

IP restriction with htaccess

I want to restrict an entire site in such a way that just two IPs could enter the site. I have the following in my .htaccess (at the root of site): ErrorDocument 403 ...
2
votes
3answers
250 views

How do I restrict my AIR distribution?

Is there any way through which i can restrict my AIR app to be further distribution? Say I have make one AIR application and I give this app to my friend. Is there any way so that he can not re ...
45
votes
12answers
74k views

What does the 'static' keyword do in a class?

To be specific, I was trying this code: package hello; public class Hello { Clock clock = new Clock(); public static void main(String args[]) { clock.sayTime(); } } But it ...
2
votes
3answers
2k views

How do I limit the result set being pulled back by NHibernate's GetByCriteria?

I have an NHibernate Dao..lets call it MyClassDao for want of a better name. I am writing the following code. MyClassDao myDao = new MyClassDao(); var values = ...
0
votes
2answers
572 views

One blog for each Django user with the “blog role”

What approach is the best way to make content-types restricted to a user in Django, lets say that i want all users with the user-role "blogger" to have its own blog. Ive createt a weblog app, but how ...
0
votes
1answer
791 views

Reporting Services Rendering format restriction

Is there any way i can restrict my rendering format to PDF for one of my report in Report Manager. Thanks, brijit
2
votes
2answers
1k views

Is there a good way to bypass restrictions on running EXE files?

I have to compute at libraries quite often these days, and have been having some issues with my U3 smart drive. Despite working on some computers, public libraries here restrict the execution of EXE ...
10
votes
5answers
853 views

Incorporating shareware restrictions in C++ software

I wish to implement my software on a shareware basis, so that the user is given a maximum trial period of (say) 30 days with which to try out the software. On purchase I intend the user to be given a ...

1 2 3 4 5