external

Loading external source code and using them internally (by re-compiling or something)

Hi, Is there a way in using externally stored sourcecode and loading it into a Java programm, so that it can be used by it? I would like to have a program that can be altered without editing the complete source code and that this is even possible without compiling this every time. Another advantage is, that I can change parts of the co...

Android: Delete app associated files from external storage on Uninstall?

It'd be convenient if an application I'm writing stored some files to external storage permanently (so they persist after the application has been exited[destroyed]), but on an uninstall I'd like to do the decent thing and have these files removed to free up the storage. Is there any way I can have these files removed on an uninstall? ...

Any way to gracefully enforce a timeout limit when loading a slow external file via javascript?

I'm using javascript to include some content served up from a php file on another server. However, this other service can sometimes get flaky and either take a long time to load or will not load at all. Is there a way in JS to try to get the external data for x number of seconds before failing and displaying a "please try again" messag...

external configuration file for enterprise library

If i use an external configuration file for Microsoft enterprise library for my program, then all the configuration for enterprise library must reside in the external configuration file? can i still have part of the configuration in the hosting configuration file? ...

GWT test with external server

Hello, I have a server-code that's written in Python, and I have a client-code that's written with GWT. Now I want to run automation testing on the GWT against the data from the Python server. From what I searched, people recommends using the Selenium, but I prefer to have a GWT-test that has more visibility into the client-code. That ...

Create a client side hook script to prevent user commit to external in TortoiseSVN

My trunk has struct: \trunk ----\data ----\src ----\tool with \tool is external to another place, not in my trunk. So i don't want user commit to \tool in SVN. They can only commit to \data or \src. Can anybody help me to create a hook script to prevent user commit to external (in this case is \tool folder). ...

ArgumentError: Error #1508: The value specified for argument font is invalid.

I have an air application that loads an external swf when prompted by the user. In the external swf, I have a class that loads all the necessary fonts for that particular swf. When my air application attempts to load the swf I get ArgumentError: Error #1508: The value specified for argument font is invalid. Any ideas? Thanks. ...

my javascript in external html is not loading.

ok so in order here is my code /* index.html */ <!-- jQuery Scripts --> <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js"&gt;&lt;/script&gt; <script type="text/javascript" src="http://tdr.host22.com/scripts/li.js"&gt;&lt;/script&gt; <link href="http://tdr.host22.com/scripts/tdr.css...

jQuery 1.4 ajax callback, html() stripping external JS from response

Using jQuery 1.4 I've come across an issue with external JS in an ajax response being removed when accessing it using html(). I'm creating an endless scrolling effect for a tumblr theme using an ajax request to load the next page. Tumblr outputs JS in audio and slideshow posts to render <embed> elements (Flash players) to show the conte...

jquery how do i execute this code and make it display in a div

what i an trying to do is use jquery and a ul menu and on click it loads section divs from an external file and displays them in a content div and in thos section div i need this code to display it's results <script type='text/javascript'> imvu_avatar_name = "TheDarkRaver"; imvu_panel_name = "rankings_panel"; imvu_section_name = "mp_ri...

How to display externally hosted images without being surprised by unexpected file sizes or other unforseen problems.

So I run a webgame over at http://ninjawars.net Displaying externally hosted images I want to provide embeddable images that aren't avatars (I'm aware of and already using the great service of gravatar, but these images won't be tied to any email), this is because I've found hosting your own uploaded images to often be a pain, and othe...

Is there a way to create external link in Mercurial

I'm trying to include an older version of some lib into a new project. Is there a way to notify the current repository that I only need specific revision of other library, and not the tip? ...

SQLite: Table1.id <> Table2.id for each id in Table1, Table2

I need the primary keys of 2 sqlite tables (say, id1 and id2) to be related such that no id1 can be equal to any id2 and viceversa. This is because I need to obtain from these 2 tables the same type of xml element, with unique attribute id. Is there a way either in sql as understood by sqlite or in "classic" sql to express such constrain...

Load external stylesheets on request?

$.getScript('ajax/test.js', function() { alert('Load was performed.'); }); .. like the above code which loads an external JS on request, is there something similar available to load an external CSS stylesheet when required? Like for example when I use lightboxes (inline popups) on my site, I want to avoid loading lightbox JS and CS...

Is there a way to reference a variable from an external document with PHP?

Hi! I wanted to use PHP do do a little thing, but I needed to know how to get a variable from an external document (say external.php) and use it in a function in a PHP document (internal.php). I was thinking maybe something like this: Code for external.php $variable = "true"; Code for internal.php if ($GETFROM{'/external.php'}['var...

How do I insert an HTML page using PHP?

Hi! I wanted to know, is there any way to insert an HTML page into PHP without using the include function? I do not want to use an external html file, I want to write the html coding directly into the php coding. Thanks for your help! ...

Determining if a specific url is present on an external website

How can I go about seeing if a particular website has a specific link in its content? We have a situation where someone is not necessarily stealing our copyrighted content, but they are posting parts of it and linking to another site as the author and we're wanting to track each time they do this. Basically what I need is something tha...

in Magento, How to make a payment method that sends POST variables to an external url?

I need to make a custom payment method that gets some variables from the customer’s order and sends them as POST variables to an external url. The variables I need to get from Magento are the total amount, the order number and the products description. Those variables are sent to a url of a third party gateway, where the credit card inf...

Setup a git external for remote repo

I'd create a repo which pulls in a remote repo, let's say I'd like to setup jQuery as a submodule for example git://github.com/jquery/jquery.git What would be the process of creating a repo with jQuery as a submodule and adding my own external as a remote repo. Also once this is setup, if I push / pull to my own remote, will the ext...

Where to put jQuery actions for extern loaded pages by UI tabs

Hello, I'm wondering where i should define my jQuerie actions for extern loaded pages by UI tabs. So for example, i've got an index.html page including 3 tabs. Onclick each tab wil load extern1.html, extern2.html, extern3.html. These 3 external pages need several jQuery actions (onload-actions, onclick-actions and more). When i put al...