Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
1k views

Cross-reference (named anchor) in markdown

Is there markdown syntax for the equivalent of: Take me to <a href="#pookie">pookie</a> ... <a name="pookie">this is pookie</a>
4
votes
3answers
613 views

Cross Reference and Passing the This Pointer between Classes [NS2/C++]

------------ ------------ | TclObjct | | Handler | ------------ ------------ ...
4
votes
2answers
180 views

OCaml cross linking

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 ...
4
votes
5answers
1k views

XML - Referencing Other XML Files

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. ...
3
votes
2answers
176 views

C++ stl list two structures cross-reference

I have such code with 2 structures: #include <list> using namespace std; struct Connection; struct User; typedef list<Connection> Connections; typedef list<User> Users; ...
3
votes
1answer
78 views

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 ...
2
votes
3answers
41 views

Enums that cross reference each other produce different results depending on order called

I have two enums that cross reference each other. Each one has a constructor that has a parameter for other enum. They look something like: SchoolEnum(ImmuneEnum value) { this.immune = value; } ...
2
votes
1answer
380 views

how to deploy gdata-objectivec-client library in xcode 4

I want to create an application that support Youtube API. I use this tutorial for create cross-references project http://mischneider.net/blog/?s=gdata But this tutorial deploy my project only in ...
2
votes
1answer
199 views

python pickle.dumps AssertionError

I'm trying to pickle a class instance containing two lists of another instances. The instances in the two lists have attributes that refer instances of each other. Here are the classes. import pickle ...
1
vote
4answers
90 views

Cross reference and circular dependency. Header including itself indirectly

placeable.h #include "selectable.h" class placeable : selectable { .. }; selectable.h #include "game.h" class selectable { .. }; game.h #include "placeable.h" class game { ... class ...
1
vote
1answer
46 views

Character encoding cross-reference

I have just migrated a database containing Latin American place names from MS Access to my MySQL. In the process, every instance of á has been changed to ‡. Here is my question: Does there exist some ...
1
vote
1answer
113 views

Ruby source cross-reference tool?

I am attempting to implement a feature in Redmine to enable it to use Bazaar in a more friendly manner, but I am having a decent amount of difficulty for a few reasons: I don't know Ruby at all. I ...
1
vote
0answers
112 views

Sorcerer between multiple projects

Sorcerer is extremely cool. But what happens if we have projects split across several projects. For example: Project C, Project B both use methods from Project A Util.method() ? We structure our ...
1
vote
0answers
48 views

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, ...
1
vote
1answer
83 views

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 ...
1
vote
1answer
620 views

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 ...
0
votes
1answer
35 views

Python-Sphinx: Link to Section in external File

I want to link to a section in an external file, but I can't get it to work. The :ref: does not seem to work globally, or do I use it wrong ? .. File: some_file.rst .. _ref_section: Some ...
0
votes
1answer
19 views

Cross-refences with Action on Jbutton

Sorry for my english, i'm not good enough. Well, at the moment i have a conception problem because i have a cross reference in my code, and i want to know if i can do something else. I have a frame ...
0
votes
1answer
52 views

Handle dynamic variable with Xtext grammar

In my DSL variables are dynamic, they are created the first time a value is assigned to them. So this is a valid code: a = 0 b = 2 // new variable created a = 3 // existing variable reassigned My ...
0
votes
2answers
75 views

could anyone suggest cross source code reference tool? [closed]

i've tried to use opengrok, lxr, cxref. no one didn't work properly or unobvious in installation and configuration. Does anyone know some easy to use tool for C/C++? And it's better if it tools knows ...
0
votes
2answers
125 views

How to handle many-to-many relationships with more than 2 tables?

Here is where I am at right now. I have four tables: task, project, opportunity, and task_xref. The project and opportunity tables each have a one-to-many relationship with task. I am storing those ...
0
votes
1answer
143 views

Cross referencing dsl elements in xtext from a jar

I have a DSL written in xtext. Lets say the extension is dmodel. I have created a project with two files a.dmodel and b.model based on the DSL and various elements inside them are able to cross ...
0
votes
2answers
259 views

Passing Values from one class to another

I am designing a slot machine project that has a second view for the high score page. For the most part, everything is working except for the passing of the winner from slot machine to the high score ...
0
votes
4answers
224 views

.net assemblies cross referencing!

i have three projects in my .net solution. the main project and two class library projects. i found that i need to cross reference the class library projects. can i do that, is it safe or there are ...
0
votes
2answers
173 views

Tweaking \autoref to behave somewhat like \vref

I would like to modify the \autoref command in the following way: if the \autoref command and the label are on the same page, it behaves like \autoref* (i.e., no hyperlink). Else, it behaves usually. ...
0
votes
1answer
125 views

cross referencing libraries and linking in C

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( ... ) { ...
0
votes
1answer
863 views

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

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 ...
0
votes
1answer
462 views

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> ...
0
votes
2answers
294 views

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 ...
0
votes
2answers
5k views

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 ...