active questions tagged external - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T21:37:41Zhttp://stackoverflow.com/feeds/tag/externalhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1944535/iframe-and-javascript-to-parent-document0iFrame and Javascript to parent document.Kevin2009-12-22T06:38:33Z2009-12-22T06:52:42Z
<p>Hi,</p>
<p>I have an iFrame with an external website. I know about the same domain rule, so I am trying to invoke some javascript via the <code>src</code> to the parent. Currently I have:</p>
<pre><code><iframe id="my_frame" src="http://other.com"></iframe>
</code></pre>
<p>and I change the <code>src</code> using javascript as follows:</p>
<pre><code><iframe id="my_frame" src="javascript:document.write("blah");"></iframe>
</code></pre>
<p>but using the <code>parent</code> does not work:</p>
<pre><code><iframe id="my_frame" src="javascript:parent.document.write("blah");"></iframe>
</code></pre>
<p>Does the same domain rule also apply for the parent or am I doing something wrong?</p>
http://stackoverflow.com/questions/1944144/loading-js-dynamically-from-another-js-jquery0Loading JS dynamically from another JS (jQuery)Nimbuz2009-12-22T04:18:17Z2009-12-22T04:31:21Z
<p>I'd like to know if I can load an external JS dynamically based on some condition, for example:</p>
<pre><code>$(window).load(function () {
if($.browser.msie && $.browser.version=="6.0") {
// load ie.js
// do stuff using ie.js
}
});
</code></pre>
http://stackoverflow.com/questions/1940928/add-programming-language-to-gedit-external-tools0Add programming language to gedit external tools?carlo.capocasa2009-12-21T15:59:41Z2009-12-21T15:59:41Z
<p>The gedit external tools plugin allows tools to apply to only one or more of a predefined list of file types.</p>
<p>How do I define my own file types?</p>
http://stackoverflow.com/questions/1916433/what-does-mean-in-an-ocaml-external-declaration2What does % mean in an OCaml external declaration?Michael E2009-12-16T17:53:37Z2009-12-20T17:39:45Z
<p>Many <code>external</code> declarations in the OCaml standard library have a % at the beginning of the function name, such as the definition of <code>int_of_float</code>:</p>
<pre><code>external int_of_float : float -> int = "%intoffloat"
</code></pre>
<p>What does the '%' mean?</p>
http://stackoverflow.com/questions/1933665/how-to-change-to-an-external-disk-drive-in-c0How to change to an external disk drive in CMr. Man2009-12-17T00:06:24Z2009-12-19T17:58:00Z
<p>Hi all I was wondering how (if possible) to change to an external HDD in C. I am writing a program that works with an external HDD.</p>
<p>Thanks much,
Mr. Man</p>
http://stackoverflow.com/questions/1507088/external-swf-to-external-swf-timeline-communication-flash-as20External SWF to External SWF Timeline Communication, Flash, AS2jecca4112009-10-01T23:49:36Z2009-12-19T01:04:06Z
<p>Flash CS4, AS2</p>
<p>I have made an interactive tour. It can be seen here:</p>
<p><a href="http://www.92YTribeca.org/Tour" rel="nofollow">http://www.92YTribeca.org/Tour</a> click on the bottom image</p>
<p>Each of the 4 sections are external swf and loaded on level 1. I want a button on one swf (floorplan) to load another swf (facility rentals) AND pinpoint a specific frame on the swf's timeline.</p>
<p>I have tried many different ways, all end up loading the swf at the first frame and ignore the rest of the code talking about the timeline. I know I could split this swf up into more external swfs and get the result I want, but I would rather use code if I can.</p>
<p>Is what I want to do possible? If so, how do I write the code?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1741129/need-help-debugging-a-custom-authentication-plugin-for-moodle1Need help debugging a custom authentication plugin for MoodlemiCRoSCoPiC_eaRthLinG2009-11-16T09:47:23Z2009-12-17T09:11:18Z
<p>I'm trying to authenticate against the user db of my website (CMS based) and it uses a slightly different approach at storing hashed passwords. It uses a randomly generated salt for each user. The salt is stored in the user db along with the hashed passwords. Hence, direct field-mapped authentication (as the <strong>External DB plugin</strong> does) won't work for me.</p>
<p>To start off, I just mirrored the DB plugin and modified the <strong>user_login()</strong> procedure to read the hashed password and the salt from the database and then hash the entered password again with the salt and match it up with the password in the database. Here's the code for my user_login() function</p>
<pre><code>function user_login($username, $password) {
global $CFG;
$textlib = textlib_get_instance();
$extusername = $textlib->convert(stripslashes($username), 'utf-8', $this->config->extencoding);
$extpassword = $textlib->convert(stripslashes($password), 'utf-8', $this->config->extencoding);
$authdb = $this->db_init();
// normal case: use external db for passwords
// Get user data
$sql = "SELECT
*
FROM {$this->config->table}
WHERE {$this->config->fielduser} = '".$this->ext_addslashes($extusername)."' ";
$authdb->SetFetchMode(ADODB_FETCH_ASSOC);
// No DB Connection
if ( !$rs = $authdb->Execute( $sql ) ) {
$authdb->Close();
print_error('auth_dbcantconnect','auth');
return false;
}
// No records returned
if( $rs->EOF ) {
$rs->Close();
$authdb->Close();
return false;
}
// Get password
$db_password = $rs->fields['user_password'];
$salt = $rs->fields['user_salt'];
// Close DB Conn
$rs->Close();
$authdb->Close();
// Return match
return sha1( $extpassword . $salt ) == $db_password;
}
</code></pre>
<p>But when I try to login, username / passwords corresponding to the website (CMS) database are failing. However, the password (for the same user) that was stored in Moodle earlier on (before I tried using this custom plugin) is getting me through.</p>
<p>That means, either my authentication routine is failing or moodle's internal db based auth mechanism is taking precedence over it. </p>
<p>I've enabled <em>ADODB debug mode</em> - but that isn't helping either. When I enable the debug output from Server settings, the error messages are being sent prior to the page headers. Thus the login page won't display at all.</p>
<p>I have all other forms of authentication turned off (except for Manual which can't be turned off) and my own.</p>
<p>Any ideas on how to solve this issue?</p>
<p>Thanks,
m^e</p>
http://stackoverflow.com/questions/1918676/how-to-change-to-an-external-disk-drive-in-c0How to change to an external disk drive in C [closed]Mr. Man2009-12-17T00:06:24Z2009-12-17T00:21:30Z
<p>Hi all I was wondering how (if possible) to change to an external HDD in C. I am writing a program that works with an external HDD.</p>
<p>Thanks much,
Mr. Man</p>
http://stackoverflow.com/questions/1893516/external-usb-hd-with-optional-mains0External USB HD with -optional- mains? [closed]Stephen2009-12-12T13:57:32Z2009-12-12T14:00:58Z
<p>Hi,</p>
<p>I'm Christmas-present-buying, and I'd appreciate recommendations for a USB HD with an optional mains power input. I've hunted, but can't find all the information I want (partially due to sketchy product specifications).</p>
<p>Background:
This is for a digital TV which I do not own, and so I'd like to get it correct first time. The TV has a USB port to allow recording straight to disk, but the manuals don't say how much power can be drawn through the USB port. The manual's instructions state, possibly generically, to plug the drive in before connecting to the TV.</p>
<p>Ideally I'd like a small (2.5"?) drive which can draw power over USB, with an mains power input if it turns out the USB port on the TV doesn't offer enough juice. The ideal is to use one cable, two max. A powered USB hub would introduce too much clutter.</p>
<p>I've spotted that the LaCie Petit drives have what appears to be an additional power input, but I'm not even sure from the specs what that is. And the device doesn't ship with a mains adapter.</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/1884981/how-to-bind-to-a-data-context-outside-of-wpf-toolkit-datagrid0How to bind to a data-context outside of WPF toolkit datagridChris2009-12-11T00:01:17Z2009-12-11T11:43:22Z
<p>Hi,</p>
<p>OK So I have a combo box which selects an administrator from a list of administrators:</p>
<pre><code><ComboBox x:Name="adminCombo"
ItemsSource="{Binding AdminsList}"
DisplayMemberPath="Name"
SelectedValue="{Binding Administrator}"
SelectedValuePath="Name"/>
</code></pre>
<p>and below this I have a WPF Toolkit DataGrid. Each administrator holds a list of user-defined fields (AvailableUDFs). In the first column of my datagrid I want to have an editable template consisting of another combobox whose items source is the list of fields belonging to the selected administrator. The following markup does not work. </p>
<pre><code><toolkit:DataGrid
AutoGenerateColumns="False"
ItemsSource="{Binding Path=UserDefinedFields}">
<toolkit:DataGrid.Columns>
<toolkit:DataGridTemplateColumn Header="Custom Data">
<toolkit:DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<ComboBox ItemsSource="{Binding ElementName=adminCombo,
Path=SelectedValue.AvailableUDFs}"
SelectedValue="{Binding Field.Type}"
DisplayMemberPath="Name"/>
</DataTemplate>
</toolkit:DataGridTemplateColumn.CellEditingTemplate>
</toolkit:DataGridTemplateColumn>
</toolkit:DataGrid.Columns>
</toolkit:DataGrid>
</code></pre>
<p>I have also tried Relative Source - Find Ancestor and searching up the tree to the previous combo box, but to no avail. Oddly enough, putting the same combo box into a ListView's items template works fine, the correct list of items shows up dependent on the selected administrator. The problem with using a WPF ListView is that ultimately I want to have other editable cells on the same row, and a plain ListView is not intended for this purpose.</p>
<p>Can anyone help me out?
Thanks
Chris</p>
http://stackoverflow.com/questions/1850659/external-program-blocks-when-run-by-runtime-exec0External program blocks when run by Runtime execJannick2009-12-05T00:58:59Z2009-12-05T01:15:19Z
<p>Hi</p>
<p>I'm attempting to launch an instance of the VideoLAN program from within a java application. One of the ways I've tried to do this is shown here:</p>
<pre><code>Process p = Runtime.getRuntime().exec("\"C:\\Program Files\\VideoLAN\\VLC\\vlc.exe\" \"http://www.dr.dk/Forms/Published/PlaylistGen.aspx?qid=1316859&odp=true\" :sout=#std{access=udp,mux=ts,dst=127.0.0.1:63928}");
</code></pre>
<p>If I execute the above command the vlc program will be launched, and will start a streaming operation (it goes through connect, buffering and then streaming phases).</p>
<p>When the command is executed by Runtime exec (or ProcessBuilder start), the vlc program will hang when it reached the end of the buffering phase. If all threads in the java program are terminated/run to an end, the vlc program will progress to the streaming phase. The java process will not terminate until the vlc process is closed, so this behavior is obviously the result of some sort of coupling between the processes. </p>
<p>Have tried to execute the command indirectly by writing it to a .cmd file and then executing it, but results in the same behavior. </p>
<p>Any ideas for how I can avoid the external process hanging?</p>
http://stackoverflow.com/questions/1835163/iphone-cross-platform-references-and-referencing-external-framework-resources0iphone: cross platform references and referencing external framework resourcesdan2009-12-02T19:15:59Z2009-12-02T19:15:59Z
<p>hi there</p>
<p>working on an iphone app and separate framework.</p>
<p>the separate framework is for an API that i'm building for use in multiple future apps.</p>
<p>this api now needs to reference resources (images). what i would like to do is keep the resources WITH the API framework as local set of resources. </p>
<p>i followed the instructions from <a href="http://www.clintharris.net/2009/iphone-app-shared-libraries/" rel="nofollow">http://www.clintharris.net/2009/iphone-app-shared-libraries/</a> to setup my app's project to use the headers from the separate API framework.</p>
<p>what i can't seem to figure out is how to automatically load the framework's resources into the app's xcode environment so they can be linked in at app compile time.</p>
<p>sure, i can drag the resources across from the framework into the main app's set of resources. but that seems kinda ugly and another step that possibly can be automated (??) anyone know of a better way? it would be great if any changes from the framework would be automatically available in the main app (due to the project 'link-age').</p>
<p>thanks for any help/tips/suggestions...</p>
http://stackoverflow.com/questions/856378/submit-to-external-website-and-have-site-submitted-from-redirect-to-another-page0Submit to External website and have site submitted from redirect to another pageJeiPM2009-05-13T06:29:44Z2009-12-02T09:15:01Z
<p>I have to have a page submit to an external website. Not a problem.</p>
<p>Problem is the external website displays a successful message, not good, I need to get the site it was submitted from to be redirected to something more user friendly. The external website won't redirect, which I think might be the easiest, if I pass it a redirectto page.</p>
<p>Anyway, any suggestions for the easiest and less effort approach to this? I read about having an iFRAME. Is there another way?</p>
<p>Thanks in advance!</p>
<p>These are static HTML pages.</p>
http://stackoverflow.com/questions/1150021/resizing-of-frame-with-dynamic-external-source0Resizing of frame with DYNAMIC external sourceunknown (google)2009-07-19T14:28:21Z2009-11-29T18:00:03Z
<p>I have tried....<br />
I have tried a lot many things...<br />
Even searched Yahoo! , Google and Bing... </p>
<p>Why oh! why does the code not reveal...<br />
I just want to complete it and put the quality seal.... </p>
<p>External frame resizing...<br />
is so f'king tensionizing..... </p>
<p>I need to find the solution....<br />
before in my head it causes more pollution.... </p>
<h1>OK, Enough of useless poetry...</h1>
<p>Normal page structure :-</p>
<pre><code><body>
<div>
blah blah
</div>
<iframe>
this is an iframe whose source is modified frequently and point to various domains. This needs to be resized dynamically according to the src page it points to right now ....
</iframe>
</body>
</code></pre>
<p>I tried many codes, including the "contentWindow.....scrollHeight" thing, but as it is an external frame, the brower blurts something like "Security warning. access to frame with external frame not allowed " </p>
<p>Read somewhere that this can be accomplished using framesets ?</p>
<p>Any help will be highly appreciated.</p>
http://stackoverflow.com/questions/1815869/external-css-for-jsf0External CSS for JSFsergionni2009-11-29T15:54:59Z2009-11-29T16:46:51Z
<p>What is syntax to add external CSS file to jsf?</p>
<p>Tried both ways.Didn't help.</p>
<p>1.</p>
<pre><code><head>
<style type="text/css">
@import url("/styles/decoration.css");
</style>
</head>
</code></pre>
<p>2.</p>
<pre><code><head>
<link rel="stylesheet" type="text/css" href="/styles/decoration.css" />
</head>
</code></pre>
http://stackoverflow.com/questions/1794013/creating-a-form-like-access-import-get-external-data-for-excel0Creating a form like Access Import - "Get External Data" for ExcelVBGKM2009-11-25T00:56:04Z2009-11-25T00:56:04Z
<p>Hello,</p>
<p>Is it possible to create a form like Access Import - "Getting External Data" for Excel? I'd like to be able to preview the table and load just the columns that my user wants.</p>
http://stackoverflow.com/questions/1783397/rspec-setup-for-an-application-that-depends-on-an-external-database-from-another0RSpec setup for an application that depends on an external database from another application.Chris Rittersdorf2009-11-23T14:22:00Z2009-11-23T16:37:18Z
<p>I've had to add features to an application that depends on a database from another application. I've been able to set up a connection to this external database and pull data from it. However, I'm not sure how to get my main application to create a test database for this external application. </p>
<p>It would be awesome if there some way to pull in the schema for this database and create it in the same manner that 'rake db:test:prepare' does. Is there any configuration capabilities for RSpec to do this, or will I have to roll my own task?</p>
http://stackoverflow.com/questions/1746875/display-drupal-content-outside-drupal1Display Drupal content outside Drupal?pgsengstock2009-11-17T05:56:37Z2009-11-17T07:43:29Z
<p>Is it possible to use Drupal to feed a few dynamic portions of a mostly static website? We have a plain old website and are looking to create a sibling site just for web-app stuff (private CMS, databasing, some forms for specific things, etc.). Some of the content we create on the sibling site (which would be Drupal), we'd like to render in areas on the primary site (non-Drupal). An example might be a news feed generator that displays on the primary site, but is actually fed from content created in the secondary site's interface. Another potential workflow might be a Drupal installation that's located in a subdirectory of a mostly static website. A general login link could redirect users to the drupal area, but could we get any of the content they create outside of that, modularly, so we can keep our nice rigid site design? I guess I'm looking to harness Drupal as more of a framework than a CMS.</p>
<p>Is any of this possible? Is this even a logical concept, or am I stupid for asking?</p>
<p>Thanks for any suggestions.</p>
http://stackoverflow.com/questions/1730377/rails-receive-post-from-external-form1Rails: Receive POST from External Formneezer2009-11-13T16:36:56Z2009-11-13T16:42:26Z
<p>I have a form on another website (using a different backend) that I want to be able to POST to my Rails application (on a different domain).</p>
<ul>
<li>How do I generate a valid authenticity token for the external form so that my Rails app will accept it?</li>
<li>Assuming I can do the answer to the above question--is there anything else special I need to do to make this work? Apart from the authenticity token, the rest of it seems pretty straightforward to me...</li>
</ul>
<p>Thanks for the help! </p>
http://stackoverflow.com/questions/1715142/free-cdn-content-delivery-network-specifically-for-hosting-jquery0Free CDN - content delivery network (specifically for hosting jQuery)DeepandMeaningless2009-11-11T13:23:59Z2009-11-13T12:38:27Z
<p>Does anyone know of a good/free CDN? We're hosting a small web app and want to load the Jquery JavaScripts from a CDN. Advice would be appreciated.</p>
http://stackoverflow.com/questions/1708146/html-and-external-css-5Html and external CSS [closed]Stalker2009-11-10T13:56:11Z2009-11-10T18:26:26Z
<p>Sorry people, I don't know how to register here, I can't give you site address, cause it's on my local machine... </p>
<p>I found the solution so big thanks... That's all for now...
THANKS.</p>
http://stackoverflow.com/questions/1692357/linking-to-external-files-in-ruby1Linking to external files in ruby?bennybdbc2009-11-07T07:51:30Z2009-11-07T08:26:46Z
<p>Sorry if this question is very easy, but I can't find the answer anywhere. How do you refer to an external ruby file in a ruby script if, for example, the file you want is in the same folder as the one you are writing?
Thanks in advance.</p>
http://stackoverflow.com/questions/1669581/visual-studio-2008-on-an-external-hard-drive2Visual Studio 2008 on an External Hard Drive?David2009-11-03T19:23:26Z2009-11-03T19:47:31Z
<p>My laptop had an install error with Vista Ultimate and now it does not let me run Visual Studio. I was able to install Visual Studio 2008 on my HP TouchSmart without a problem and now I use it on there. I want to be able to travel though. So I was wondering if I take the folder in which Visual Studio was installed and put it on my external hard drive and just run it off of there. Is this possible? I've managed to do it with other programs before.</p>
http://stackoverflow.com/questions/1662506/external-reference-of-a-javascript-file-in-ie0External Reference of a Javascript file in IEGarrett2009-11-02T17:11:05Z2009-11-03T00:40:32Z
<p>I am working on a website for a teacher,
Since there is a chance she may want to add more later, I decided to make the links that appear on every page be written in by Javascript so that all the pages could be changed quickly.</p>
<p>The HTML code has this for the external reference:</p>
<pre><code><script type="text/javascript" language="javascript" src="links.js"></script>
</code></pre>
<p>The Javascript looks like this:</p>
<pre><code>document.write(<div id="wrapper">
<div id="header">
<ul>
<li><a href="home.html">Home </a></li>
<li><a href="catering-home.html">Catering </a></li>
<li><a href="prostart-home.html">ProStart </a></li>
<li><a href="recipes.html">Recipes</a></li>
</ul>
</div>
</div>)
</code></pre>
<p>This loads perfectly in firefox, but the part of the page written in by javascript does not load in IE. is it how the code is written or the reference that is preventing IE from loading it?</p>
http://stackoverflow.com/questions/1659183/read-in-external-links-in-php0Read in external links in PHPJosh K2009-11-02T02:34:27Z2009-11-02T10:07:10Z
<p>I know how to do this in Ruby, but I want to do this in PHP. Grab a page and be able to parse stuff out of it. </p>
http://stackoverflow.com/questions/1634757/as3-instantiate-class-from-external-swf0AS3 Instantiate Class From External SWFChris2009-10-28T01:56:25Z2009-10-31T15:16:07Z
<p>Hi,</p>
<p>I was chatting with my buddy about this, he is convinced you can do this and says he has done it, but I cannot get this to work.</p>
<p>I am wondering if it is even possible at all. I tried typing a var as a Class that is within the externally downloaded SWF and then making an instance but no can do.</p>
<p>some code</p>
<p><code>private static function onCompleteHandler(e:Event)
{<br />
dashboardObject = e.target.content;<br />
// registerClassAlias("Dashboard", ); doesnt work<br />
var dash:Class = getDefinitionByName("Dashboard") as Class;<br />
var myDash = new dash();<br />
trace(myDash.show);<br />
}</code></p>
<p>Error</p>
<p><code>ReferenceError: Error #1065: Variable Dashboard is not defined.<br />
at global/flash.utils::getDefinitionByName()<br />
at System$/onCompleteHandler()</code> </p>
<p>So it seems you cannot make an instance of a class unless it is complied within the project SWF. Which if true is what I want it to do. I do not want people trying to make instances of my classes just from downloading the SWF file for what I am building here.</p>
<p>thanks</p>
http://stackoverflow.com/questions/1639988/content-replacement-from-external-website0Content replacement from external websiteBen4Himv2009-10-28T20:44:17Z2009-10-28T20:49:08Z
<p>So I am pretty new to jQuery and Javascript in Gen. I like the simple load() functionality that JQuery uses. My question: Is it possible to load content from an external website using the load() function?</p>
<p>$(#placeholder).load("http://wwww.facebook.com/someuser");</p>
<p>tring to sync content on a specific facebook page that will be loaded into #placeholder div.</p>
http://stackoverflow.com/questions/1628065/use-ajax-function-in-jquery-to-load-part-of-an-external-page-into-div0Use Ajax() function in Jquery to load PART of an external page into divdescantstudio2009-10-27T00:23:00Z2009-10-27T00:30:13Z
<p>I'm trying to load a DIV element from an external page into my current page using the Ajax/jQuery.ajax function. While I have successfully been able to load an entire external page, I can't seem to load <em>just</em> the DIV element.</p>
<p><strong>Here's my code:</strong></p>
<pre><code>$("a").click(function() {
/* grabs URL from HREF attribute then adds an */
/* ID from the DIV I want to grab data from */
var myUrl = $(this).attr("href") + "#external-div";
$.ajax( {
url: myUrl,
success: function(html) {
/* loads external content into current div element */
$("#current-div").append(html);
}
});
return false;
});
</code></pre>
<p>It grabs the HREF attribute without any trouble, but won't append "#external-div" to the URL. Any ideas?</p>
<p>Thanks much!</p>
<p>~Jared Crossley</p>
http://stackoverflow.com/questions/1604092/swf-file-displayed-but-xml-data-not-loading-into-the-swf-embedded-in-aspx-page0SWF file displayed but xml data not loading into the swf embedded in aspx pageJaimie lisa Stow2009-10-21T22:48:19Z2009-10-26T08:06:23Z
<p>the flash map calls the xml external file which contains data
the map shows in firefox and works a treat but wont show any of the xml data
Help</p>
http://stackoverflow.com/questions/245420/dimensions-of-loaded-swfs-stage2dimensions of loaded swf's stagematt lohkamp2008-10-29T00:45:25Z2009-10-21T11:36:28Z
<p>Here's the situation - I've got a shell that loads an external .swf. Now, that .swf is 800x600, but it's an animation piece, and there are elements that extends off the stage. When I load the .swf into the shell and call its width attribute, it returns 1200 - because it's including the elements that break out of the stage.</p>
<p>This isn't what I want - ideally, there would be two properties, one to return the 'calculated width' and one to return the 'default width'. Do these properties exist, and if not, what's the best workaround?</p>