Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
8answers
1k views

How to implement a rule engine?

I have a db table that stores the following: RuleID objectProperty ComparisonOperator TargetValue 1 age 'greater_than' 15 2 username 'equal' ...
7
votes
2answers
572 views

what does an * (star) mean in front of a CSS rule?

I'm new to CSS and am using the Yahoo YUI libraries in a project. I am learning as fast as possible, but apologize in advance if this is too rookie of a question. Can anyone help me understand the ...
4
votes
2answers
26 views

Redirecting to a photo with htaccess

Basically I'm using htaccess I have a hidden directory which I'd rather not be used and I want shorter links: I would like http://example.com/12940.png to goto ...
4
votes
2answers
4k views

LaTeX \rule filling the line

Why does the following command not produce a horizontal rule filling the space until the end of the line? Hello \rule[0.5em]{\fill}{1pt} It is my understanding that this should print the text ...
4
votes
3answers
1k views

Recurrence rule definition (RFC2445) question

I'm using Google's RFC2445 implementation (http://code.google.com/p/google-rfc-2445/) for recurrence rules. If I define a MONTHLY recurrence starting on the 30th of January, months with less than 30 ...
3
votes
3answers
296 views

Best way of logging exceptions when tests fail (e.g. using a junit rule)

When I'm running a complete test suite, it would be helpful if exceptions that caused a test to fail would appear in my (SLF4J-)log. What is the best method to achieve this? What I would like is a ...
3
votes
1answer
151 views

ANTLR: call a rule from a different grammar

is it possible to invoke a rule from a different grammar? the purpose is to have two languages in the same file, the second language starting by an (begin ...) where ... is in the second language. ...
3
votes
1answer
197 views

How to get pattern rules to match file names with spaces in Makefile?

In the GNU make docs, '%' is documented to match "any nonempty substring". However, it seems it actually only matches non-empty substrings that do not contain whitespace. For example, say you do this: ...
3
votes
1answer
188 views

guidelines for implementing rule engine

What could be the reasons to implement your own rule engine instead of using existing commercial /open source engines? Any specific guidelines for implementing rule engines?
3
votes
2answers
845 views

JUnit Rule TemporaryFolder

I'm creating a TemporaryFolder using the @Rule annotation in JUnit 4.7. I've tried to create a new folder that is a child of the temp folder using tempFolder.newFolder("someFolder") in the @Before ...
2
votes
1answer
24 views

Mod-Rewrite “Canonical URL's”

Hy, how can i make canonical URLs (For Facebook "Parsing") with mod_rewrite. Example: I have: example.com/index.php?page=eventdetails&id=241 I would make an canonincal URL, which should look ...
2
votes
1answer
64 views

How to use @Rule in Selenium Junit to fail a test

I've got the following test which I have put a try catch around so it fails if actual value does not equal expected value: try{ Assert.assertEquals(ExpectedCount, ActualCount); }catch ...
2
votes
1answer
234 views

Prolog - adding to a list recursively

I'm trying to write a rule that goes through a database of facts and adds up the numbers from each fact together and saves it into a list: to be specific, this is the question: Write a rule based on ...
2
votes
1answer
64 views

Rewriting URL adress on a site

in my website I have links like this - http://domain.com/index.php?page=about and I want to make them look like this - http://domain.com/about Is it possible and if it is what should I do to get this ...
2
votes
2answers
174 views

Dataset for Apriori algorithm

I am going to develop an app for Market Basket Analysis (using apriori algorithm) and I found a dataset which has more than 90,000 Transaction records . the problem is this dataset doesn't have the ...
2
votes
1answer
32 views

Removing “tag” from rewrite rule that looks like this:

RewriteRule ^tag/([^/]+)/([^/]+)/?$ search.php?search=$1&tag=true&from=$2 [QSA,NC,L] RewriteRule ^tag/([^/]+)/?$ search.php?search=$1&tag=true [QSA,NC,L] RewriteRule ...
2
votes
1answer
123 views

Rule Engine - How to store rules to avoid parsing on edit?

My .NET application evaluates user defined rules at runtime. These rules are entered to system via GUI menus by user. I generate a logical statement that corresponds to it and store it in database. ...
2
votes
3answers
46 views

create a rule for more than one use inside a regex call

Supposing I have the following text: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod ,,,,,,tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, ...
2
votes
2answers
189 views

Create rule in makefile for just a set of files

I am writing a Makefile, and I want to use a generic rule with wildcards, like %: bkp/% cp $< $@ But I wanted this rule to be valid only for a few specific files. I wanted to define a ...
2
votes
1answer
263 views

URL Rewriting-Page display - rewrite rule in .htaccess

For URL Rewriting, i have got the output for static URL But , for dynamic URL , i am getting partial output only. I have placed the .htaccess file in the root directory only. Here is the code: ...
2
votes
3answers
714 views

JUnit @Rule to pass parameter to test

I'd like to create @Rule to be able to do something like this @Test public void testValidationDefault(int i) throws Throwable {..} Where i is parameter passed to the test by @Rule. However I do ...
2
votes
1answer
428 views

Simplifying a four-dimensional rule table in Matlab: addressing rows and columns of each dimension

I'm currently trying to automatically generate a set of fuzzy rules for a set of observations which contain four values for each observation, where each observation will correspond to a state (a good ...
2
votes
3answers
71 views

Apache Rewrite rule confusion

I'm trying to convert a simple url (below) in to a blog-style url, but not quite sure how to do it, all of my other rules are working fine, but I can't seem to figure this one out. URL I want to ...
2
votes
3answers
481 views

What does this Rewrite rule mean?

Im installing phpancake, there is a folder there shema like this application/ install/ library/ public/ sql_schema/ install.html install.php What does this rule mean? RewriteEngine On RewriteCond ...
2
votes
1answer
1k views

Writing conditional rule using jQuery validation

Hi I have a simple modal popup which has 3 name fields and 3 e mail fields adjacent to each other. I am new to jQuery so can any one please help me how to write a logic for the following case? The ...
1
vote
1answer
31 views

Working with multiple source file extensions in a makefile

I have a c++ project with various extensions for the source files (.cpp, .c, .cc) and various extensions for the header files (.hpp, .h, .hh). The source files are located in a directory called SRC, ...
1
vote
1answer
46 views

jQuery Validation Plugin - adding rules that apply to multiple fields

I'm using the jQuery Validation plugin: I have several fields in a large form that I want to apply the same rules to. I've simplified the code for this example. This code doesn't work, but I want ...
1
vote
1answer
28 views

Why is gnu make ignoring my explicit pattern rule and using a built-in implicit rule instead?

My makefile has this rule/recipe: %o: %cpp Makefile g++ -Wall -Wextra -MMD -MP -O2 -c -o $@ $< This worked fine until I upgraded Cygwin recently and got Make 3.82.90 (previous version was ...
1
vote
1answer
58 views

Prerequisites in assorted directories

I have a variable with a list of prerequisites in varying directories, each specified by a relative path. For example: HTML_FILES := ../foo1/bar1.html ../foo1/bar2.html ../foo2/bar3.html ...
1
vote
2answers
80 views

How to make Enum literal case insensitive in Xtext

I have defined an EnumRule like following in my Xtext grammar file: enum MySpec_directionEnum: left='"left"' | right='"right"' | none='"none"'; With this rule the allowed enum values are "left", ...
1
vote
0answers
29 views

htaccess rewrite with double rules (with version)

I hope a htaccess script voodoo can help me here! I'm trying to get a htaccess script working using two rules. I was using a first rule to use folders for different versions, which was great: ...
1
vote
2answers
73 views

make doesn't find rules to make target (newbie on manual makefile generation)

I have the following makefile that I tried to construct out of a tutorial. Then I (thought) i added the necessary sources in order to fit it for my code.. but it doesn't find the target. I think It ...
1
vote
1answer
138 views

Move Outlook messages if content contains a number greater than threshold

I get thousands of Nagios alerts in my inbox daily, but many of them are actually trivial (even though Nagios reports them as critical). I want to check whether the text of these alerts contains ...
1
vote
1answer
208 views

Biztalk Rule engine : How can use .net classes to validate incoming message

What i want to do is this : I am getting an xml as incoming. That has as "id" element. Now in a .net class library , i want to check that an entity with this id already exists in my db or not. If ...
1
vote
1answer
349 views

How to check if directory is writeable by UID?

Can File::Find::Rule be used to determine if a directory is writeable by a given UID? I have used the following test: my $uid = 123; # or whatever... my @subDirs = ...
1
vote
1answer
129 views

htaccess regex wildcard redirects overriding other redirects

I currently have the following redirects in htaccess, and I need to add two new redirects. Though it appears the last wildcard redirect is overriding the two new redirects which I am trying to add. ...
1
vote
1answer
501 views

understanding working of Drools guvnor

can any one plz let me know that how drool guvnor work i went to guvnor documentation but couldn't understand the core logic of how rules are processed and how we can use drools guvnor in coherence ...
1
vote
1answer
90 views

Writing a rule for parser

Hii, I have a parser which has many rules and no problem with it its all working.. i am using lex and yacc... The problem is i want a rule such that if the input string does not match any of the ...
1
vote
2answers
160 views

My .htaccess RewriteRule is “not working”

RewriteRule ^word-(.*)/(.*)/([a-z][a-z])/([0-9]+)?/$ /keywordbycountry.php?word=yes&keyword=$2&cc=$3&page=$4 [L] the $2 = is the keyword (anything) the $3 is the country code (only 2 ...
1
vote
2answers
57 views

What is right rewrite rule?

I need a rewrite rule from this url (first) ?lang=rus&menu=about to this (second) /about_project/. I currently have this .htaccess file: RewriteEngine on RewriteBase / RewriteRule ...
1
vote
0answers
112 views

Rule violations prevent saving in asp.net MVC

While debugging the edit of my usser information it is showing the esception of Rule violations prevent saving. Why this is? even I am checking values for all the compulsory fields, which set in DB as ...
1
vote
0answers
128 views

Searching for a rule engine with fuzzy logic abilities

I am looking for a rule engine with fuzzy logic abilities. I wanted to use Jess but unfortunately it's fuzzy logic plugin is out of date, it's not supported any more and I was unable to download it ...
1
vote
1answer
348 views

Prolog - call a rule with fact

TL;DR: Need help calling a rule with a fact I´ve started out with prolog, coming from C and got stuff working... until they evidently got broken. I´m writing a small car-paint program for myself as ...
1
vote
1answer
103 views

FxCop rule for string ==?

Can anyone point me to an fxcop rule for identifing "string ==" usage. For example: string s = "abc"; if (s == "def") { // do somethign } I want the "if" statement raised as an error. Roughly ...
1
vote
2answers
2k views

Prolog Or(;) Rule Return Multiple Result

i have define a rule with or operator but it return multiple true or false. isloanaccept(Name,Guarantor,LoanType,LoanAmount,LoanTenure) :- customer(Name,bank(_),customertype(_), ...
1
vote
2answers
110 views

Prolog Combine Rule

i need to write a rule which consists of sub rule. Any idea how to achieve this ? isloanaccept(Name, LoanAmount, LoanTenure) :- customer(Name, bank(_),customertype(_), ...
1
vote
2answers
53 views

Prolog Rules Reflect Strucutre

i need to design a rules which test a loan is a car loan or not. carLoan(flexiCar,minLoanAmount(20000),maxTenure(12) ). iscarloan(X, Y, Z) :- carLoan(X, Y >= minLoanAmount(20000), Z ...
1
vote
3answers
1k views

Open Source Rule Engine Written in Java

I am working on an AI related application. For this application I need to have a rule engine. Jess is a good rule engine completely written in Java. But for my application I can’t use it due to ...
1
vote
1answer
342 views

SOAP Message size it greater than allowed limit [SECURITY.MSGSIZE v 1.0]? How?

I'm trying to help a colleague run SOATest (a web services client that makes testing SOAP services easy) on a WCF web service operation, and for "big" responses, we are seeing this error: SOAP ...
0
votes
0answers
7 views

great rule engines comparison table out there?

Searching for a great comparison table for rule engines, including the "big" players like , ibm's ilog, jboss's drools... I was searching for some day, maybe someone out there is able to help me ;) ...

1 2