cross-reference

How do I create a cross reference table/query for my data?

I have two simple tables in my database. A "card" table that contains Id, Name, and text of a card, and a "rulings" table which contains the Id of the card, and text detailing the rulings for the card. Often enough in the ruling text, there is a reference to another card in the database. It is easy enough to find this in the text becaus...

XML - Referencing Other XML Files

Hello. I'm new to XML, so this may be a fairly easy question to answer. I was wondering if there is a standard way of referencing external XML files from within other XML files. Let me give an example. Say you have a file which defines a single object that holds a large amount of data: <person> <name>John</name> <age>18</age...

XML element hierarchy referencing

I'm looking through possible representations for what can be considered a finite depth graph in XML format for data exchange purposes. The problematic point is how to reference nodes in edge tags. Two strategies I see are a) using unique identifiers or b) using paths. Unique IDs: <graph id="g0"> <node id="n0"/> <node id="n1"/> <...

C# cross reference generation?

The problem: I find myself using Visual Studio's feature "right click -> find all references" a lot, but often times I need to switch between several results which cannot be easily done in Visual Studio. I'm thinking something like PHP's Xref utility that generates a cross reference documentation from source code. Is there anything simi...

Cross Referencing Databases on Fuzzy Data

I am currently working on project where I have to match up a large quantity of user-generated names with a separate list of the same names in a canonical format. The problem is that the user-generated names contains numerous misspellings, abbreviations, as well as simply invalid data, making it hard to do a cross-reference with the canon...

Trouble cross-referencing two XML child nodes in AS3

I am building a mini language translator out of XML nodes and Actionscript 3. I have my XML ready. It contains a series of nodes with two children in them. Here is a sample: <translations> <entry> <english>man</english> <cockney>geeza</cockney> </entry> <entry> <english>woman</english> <cockney>lily</cockney> </entry> </translat...

Trouble with error #1067: Implicit coercion of a value of type String to an unrelated type XML - AS3

Hi all, I'm building a small flash-based language translator. I am cross-referencing children of an XML parent node once the user types in a word or phrase into the text field. The result will be a translation of that word or phrase returned to the output_txt text field. The problem is, Flash gives me this error regarding the value typ...

How can I get character-accurate identifier cross-reference for C99 code?

I maintain several modest-sized C programs, and I frequently have a use for fully accurate cross-reference information. Unlike "tags" or other approximations, such information is typically generated by a compiler that knows the full scoping rules of the C language and can provide accurate information accordingly. For example, here is a...

Source cross reference like LXR but written in PHP?

Hi, does someone know a good cross reference engine like LXR, but written in PHP? My provider has PHP and MySQL as well as Postgres DBs, but neither I have access to Perl nor via SSH. I'd like to put up a online cross ref for my Software which is written in C. Thanks for helping! Dan ...

OCaml cross linking

Hello, how does referenced linking work in OCaml? Example, let's assume I have 3 modules declared as A.ml B.ml C.ml of which A needs B and C B needs A How should I proceed in compiling? Since order is relevant using ocamlc or ocamlopt how can I fix the cross reference between B and A? I'm trying to first compile them all into ...

cross referencing libraries and linking in C

Hi, I have two C static libraries libA and libB that I link against my executable E. libA has a function that makes a call to a function that is in libB: myLibAFunctionThatCallsAfunctionInLibB( ... ) { libB_function(...); } Both libraries compile fine. My executable E also compiles fine. E is compiled with gcc using -lA -lB flags ...

RIA services: How to navigate from frontend to backend service method ?

I've got a call to a RIA services method in my frontend. Is it possible to navigate to the corresponding method in the service ? Using "F12 goto definition" or something similiar ? When I press F12, Visual Studio only navigates to the generated stub method in my frontend (*.Web.g.cs file) but that's not what I need. Maybe it's possible...