Questions tagged [interchange]

Interchange is a web-based application framework written in Perl provided by the Interchange Development Group.

Interchange is a web-based application framework written in Perl provided by the Interchange Development Group. Homepage: http://www.icdevgroup.org/i/dev

25 questions
5
votes
3 answers

What does X-Sender-Id mean in email raw source (Found in phishing email)?

Somebody in my company is being subject to phishing. My first suggestion was just to change the password. However after awhile I received a fake mail from her address again. Looking at the raw source of the email I found that there is another…
lisovaccaro
  • 32,502
  • 98
  • 258
  • 410
3
votes
1 answer

Zurb Foundation Interchange not working, 'nodeName' undefined

I'm trying to use interchange to change images based on the screen size. However, when interchange is initialised no images load. Then when I resize the browser (1024px and lower) I get an error in the console saying: Uncaught TypeError: Cannot read…
Karl
  • 5,435
  • 11
  • 44
  • 70
2
votes
1 answer

Remote IP Address

I want to get the remote IP of the machine accessing my website. I am using Interchange Server IC. IC perl code in embedded into HTML. In perl i could find out this solution : use CGI; print "Content-type: text/plain;…
rachel
  • 225
  • 2
  • 5
  • 16
2
votes
0 answers

Open-Host service, published language and canonical data model

The published language of the open-host service (OHS) can be seen as an integration-oriented model to help simplifying the public interface of the OHS consumers. The published language is integration-optimized and exposes data in a more convenient…
Ton Donker
  • 51
  • 4
2
votes
1 answer

How do I iterate over the rows in dataframe and swap two adjacent rows and perform some operations on the new dataframe created after the swap?

for i, rows in df.iterrows(): x, y = df.iloc[rows].copy(), df.iloc[rows+1].copy() df.iloc[rows], df.iloc[rows+1] = y, x break I get error on execution: positional indexers are out-of-bounds`
1
vote
0 answers

MySQL - Interchange column value from one row onto another

SELECT OlineDate, OlineOrder, OlineDesc, OlineGroup, OlinePrice FROM tblorderlines WHERE DATE(OlineDate) = '2019-10-19' AND OlineOrder = 170 AND OlineGroup IN ('spec') |====================================================================| |…
codenoob9000
  • 47
  • 1
  • 7
1
vote
0 answers

Intersection Observer API + Foundation Interchange

Using Zurb Foundation framework. It has a component called Foundation Interchange to serve responsive images. See https://foundation.zurb.com/sites/docs/interchange.html While it does serve images based on viewport, it does not support lazy load…
Brian
  • 11
  • 1
1
vote
1 answer

wpf grid interchange rows dynamically

I have a grid in a xaml with 6 rows,each row is having a user control. Now I want to interchange 3 and 4th row based on some condition dynamically. Is it possible to do by binding a property to Grid.Row? Could anyone please help me out as I'm…
RDY
  • 13
  • 5
1
vote
1 answer

Foundation 6 Interchange data-src

it's possible make that interchange-foundation 6 on resize replace the path on the attribute data-src instead the src of an image? And same behavior on a background image in a DIV, replace path on data-src instead the style="background-image. I'm…
ysanmiguel
  • 451
  • 1
  • 4
  • 20
1
vote
1 answer

Custom Interchange queries with Foundation 6

I'm trying to add a custom media query to Interchange for retina laptops, but it doesn't seem to be picking up. I'm sure something is in the wrong place or there's wrong syntax somewhere. Any ideas? HTML:
Bryce
  • 356
  • 1
  • 16
1
vote
1 answer

Wordpress and interchange.js

In a wordpress blog I'm working on, I am using interchange.js (by Zurb) to dynamically load a php file if the screen width is greater than a given value. I need to run wordpress stuff in this php file, which don't seem to work since I load it with…
Robin Cox
  • 1,470
  • 2
  • 16
  • 31
1
vote
1 answer

Interchange the Y and Z axis in 3D- isosurface plot

The last few days I'm having trouble trying to interchange the Y- and Z- axis on a 3D- isosurface plot. I want to interchange the Y- and Z-axis in order to visualise it and to be able to discuss the result more clearly. I remember that in the past I…
0
votes
1 answer

Forwarding/Using sql query output value from Perl to HTML In Interchange

I have a perl test.pl page that sends an email. The emails contains a link to an html page linkfromTest.html. (Interchange is a web-based application framework written in Perl provided by the Interchange Development Group. Homepage:…
rachel
  • 225
  • 2
  • 5
  • 16
0
votes
1 answer

Error while inserting perl variable in the mysql table on html page

Error while inserting email address in the table **[perl] my $username=$CGI->{salesrep}; return $username;[/perl]@gmail.com** I want to insert this value in the table. But It gives null when executed. [query type=list sql="INSERT…
rachel
  • 225
  • 2
  • 5
  • 16
0
votes
2 answers

TIMEDIFF in MYSQL

TIMEDIFF in MYSQL I am using Interchange IC (http://interchange.rtfm.info/icdocs/index.html) [query list=1 sql="SELECT TIMEDIFF(NOW(),'[sql-param time]') as diff"] my $vardifftime = [sql-param diff]; $vardifftime It is giving output blank. I want…
rachel
  • 225
  • 2
  • 5
  • 16
1
2